diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
| -rw-r--r-- | app/src/main/AndroidManifest.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 7e8e599..a6f6154 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -30,6 +30,7 @@ android:roundIcon="@mipmap/ic_launcher" android:theme="@style/Theme.Scrcpy" android:allowBackup="false" + android:dataExtractionRules="@xml/data_extraction_rules" android:supportsRtl="false"> <activity @@ -47,7 +48,6 @@ android:exported="false" android:launchMode="singleTask" android:configChanges="orientation|screenSize|keyboardHidden" - android:screenOrientation="unspecified" android:hardwareAccelerated="true" android:theme="@style/Theme.Scrcpy.Fullscreen"/> @@ -57,6 +57,12 @@ android:label="@string/settings" android:theme="@style/Theme.Scrcpy.NoActionBar"/> + <activity + android:name=".Licenses" + android:exported="false" + android:label="@string/licenses" + android:theme="@style/Theme.Scrcpy.NoActionBar"/> + <service android:name=".Sessions" android:exported="false" |