PhilN Member Licensed User Longtime User Jun 6, 2020 #1 My app is a compass. I want to publish my app but I don't want people who don't have magnetometers to "see" the app on Google Play store. Is there a way to limit installations to devices that do have magnetometers?
My app is a compass. I want to publish my app but I don't want people who don't have magnetometers to "see" the app on Google Play store. Is there a way to limit installations to devices that do have magnetometers?
Pendrush Well-Known Member Licensed User Longtime User Jun 6, 2020 #2 Something like this (add line below in app manifest) B4X: AddManifestText(<uses-feature android:name="android.hardware.sensor.compass" android:required="true" />) Read more here. Upvote 0
Something like this (add line below in app manifest) B4X: AddManifestText(<uses-feature android:name="android.hardware.sensor.compass" android:required="true" />) Read more here.
PhilN Member Licensed User Longtime User Jun 6, 2020 #3 Wonderful. I will use it and see whether it works! Thank you Upvote 0