How can I disable multitouch required=true in Andriod manifest file

I put AndriodManifest.xml into /Plugins/Andriod folder, but every time I build my application it seems to ignore it and forces multitouch as required anyway.

Explicitly remove the requirement by including the following line to the custom AndroidManifest:

< uses-feature android:name=“android.hardware.touchscreen.multitouch” android:required=“false” />

If you use very basic input, you might also want to play around with faketouch and additionally include these two lines:

< uses-feature android:name=“android.hardware.touchscreen” android:required=“false” />

< uses-feature android:name=“android.hardware.faketouch” android:required=“true” />

Disclaimer: I haven’t tried builds with such manifests in actual devices without multitouch, so I don’t know how Unity responds at runtime.

Follow the link bellow for more information on android feature filtering on the android manifest:
http://developer.android.com/guide/topics/manifest/uses-feature-element.html

(Unity 3.5.2f2, Android SDK 4.0)