Hi, Guys
I am having a purge and decided to address all the Compiler warnings for my App. But I am left with
Library 'FirebaseAnalytics' is not used. (warning #32)
My App uses Push notifications, so I assume this library is required (but the code will compile without it - not sure if it runs correctly as the GPS is rarely used and difficult to test).
Obviously, within the code I have used the following to remove warnings - usually left in for future work
Question: how do we remove these library warnings?
Kind regards
Dave
I am having a purge and decided to address all the Compiler warnings for my App. But I am left with
Library 'FirebaseAnalytics' is not used. (warning #32)
My App uses Push notifications, so I assume this library is required (but the code will compile without it - not sure if it runs correctly as the GPS is rarely used and difficult to test).
Obviously, within the code I have used the following to remove warnings - usually left in for future work
Ignore to remove a warning:
Dim unusedVariable as int 'Ignore - i.e. leave maybe used later!
Question: how do we remove these library warnings?
Kind regards
Dave