- Home /
How to setup android build so that users without gyroscope do not see it in Play Store ?
Hello, I recently launched a game made with unity and it's using the gyro as input, but some users do not have gyro and they leave bad reviews because they can't play the game.
How do I make it so that users with no gyro do not see the app in Play Store ?
Set in the build in Android Studio that only API devices with 4.4 and above can download the game.
Answer by Morgrhim · Jun 27, 2015 at 11:04 PM
http://developer.android.com/google/play/filters.html
http://developer.android.com/guide/topics/manifest/uses-feature-element.html
The above explains what you need, but TL;DR is that you need to put a gyroscope restriction in the Android manifest using the "uses-feature" filter.
The exact feature you need to require is android.hardware.sensor.gyroscope