Hi,
I have an app, you can see it here:
https://play.google.com/store/apps/details?id=com.cardinalcorp.czapps
However, from the TC8000 device - I can't see it. In the manifest of this app I have:
So it should be visible. Any idea?
Thanks.
p.s. I've attached the .apk if anyone wants to analyze it.
1 Replies
Hello,
I think that this is due to the application requesting a GPS permission:
The play store sees that our TC8000 doesn’t have a GPS and so it refuses to download it to the device because it's seen as “incompatible”. This to prevent a bad experience to the user.
Your best option is to change the Android Manifest of the application, adding that a GPS is used, but not required:
https://stackoverflow.com/questions/11074228/gps-manifest-gps-in-app-is…
The piece:
android:required="false"
Is the key point.
Let us know if this solve your issue.
~Pietro