I have brought my apps from the Play Store to Amazon App Store but I'm struggling with the following lines:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
They are not supported by the majority of apps and have to adapt them and remove those sections. Personally, I'm quite surprised that modern devices don't have location support.
If the previous permissions are not allowed, what should be the appropriate way to get the Lat and Long in FireOS devices? Should I use an external service to get these values based on their IPs?
Thanks.