I have an application that cannot be seen on specific devices without bluetooth.
The problem is that in my manifest file I have a bluetooth permission:
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:required="false"></uses-permission>
<uses-permission android:name="android.permission.BLUETOOTH" android:required="false"></uses-permission>
Programmatically I excluded bluetooth option for that devices, but I cannot find my app on market on that devices.
So, 3 questions:
- Is there a tool that can show me the list of
devices available on market? Like
https://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=1286017
but only not on market - Can I somehow add this permision only for
devices with bluetooth? - All other solution that can help me to
find my app on market (but to keep permission for devices with
bluetooth).
I guess you also have
in the manifest. You can try to add
android:required="false"to that.