optional touchscreen in debug and profile manifests

This commit is contained in:
Adam Velebil 2023-10-31 14:41:45 +01:00
parent b4de565d96
commit d1b9e00474
No known key found for this signature in database
GPG Key ID: C9B1E4A3CBBD2E10
2 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,10 @@
-->
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<!-- support ACTION_RUN for debug builds -->
<application
android:icon="@mipmap/ic_launcher"

View File

@ -3,4 +3,9 @@
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
</manifest>