I have finished my first application and published in android marketplace (https://market.android.com/details?id=Mobilesoft.asia.numbers&feature=search_result)
My problem is, in upload page is written:
This apk requests 1 features that will be used for Android Market filtering:
android.hardware.touchscreen
while this game is designed for all touchscreen and non-touch devices. If device doesn’t support touch, the player can play with keyboard, joystick or navigation keys. How can I say this application is able to support non-touch devices?
I have the same issue with my Android app. I think Google adds the
android.hardware.touchscreenfilter because you’re using some feature in your code that requires a touchscreen.What happens when the
android.hardware.touchscreenfilter is applied is that your app no longer shows up when someone has a device that does not support a touchscreen. You won’t be able to say that your application supports non touch screen devices until you remove whatever part of your code that has required the filter.