I made an app which implemements a View OnTouchListener. When I uploaded it to the Market, I get the following message:
This apk requests 1 features that will be used for Android Market filtering
android.hardware.touchscreen
I really don't need a touchscreen per se. You could also "click" the view and this would be fine. If instead of using the OnTouchListener, I used the OnClickListener, would this requirement go away?
What percentage of Android devices do not have a touch screen? Should this update from OnTouchListener to OnClickListener be something worthwhile in terms of new potential users?
Thanks!