Chromebook optimizations

* allow non-touchscreen devices
* force full screen (do not allow resizable windows)
This commit is contained in:
Chris Garrity 2021-07-19 17:46:22 -04:00
parent 51ce7e6a6d
commit 566f2f9389

View file

@ -10,7 +10,6 @@
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.microphone" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="true" />
<supports-screens android:requiresSmallestWidthDp="600" />
<application
@ -18,7 +17,8 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:hardwareAccelerated="true">
android:hardwareAccelerated="true"
android:resizeableActivity="false">
<provider android:name="ShareContentProvider"
android:grantUriPermissions="true"
android:authorities="${applicationId}.ShareContentProvider">