I have finished writing the first version of my application and I am trying to set the manifest correctly.
My application is a touch-based game.
so I want the phone to touch
so I install the following:
<uses-configuration android:reqTouchScreen="stylus"/>
<uses-configuration android:reqTouchScreen="finger"/>
Now, what is interesting to me, do I need to put a stylus? Will there be a game that works with touch work with a stylus?
I don't have a stylus phone for Android, so I would like to have some input if I have to use it or not.
source
share