diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2022-03-11 12:38:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 12:38:21 +0100 |
commit | 9b81cc510c811ced7934a6ef49eef9963ce3c88d (patch) | |
tree | 876a3ebd402a14e14db49318fbc2ad193627cb7f | |
parent | Update AndroidManifest.xml (diff) | |
download | xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.tar xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.tar.gz xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.tar.bz2 xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.tar.lz xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.tar.xz xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.tar.zst xManager-9b81cc510c811ced7934a6ef49eef9963ce3c88d.zip |
-rw-r--r-- | app/src/main/AndroidManifest.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 82357c4..24cc3bb 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -16,7 +16,7 @@ <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
<application
android:allowBackup="true"
- android:requestLegacyExternalStorage="true"
+ android:requestLegacyExternalStorage="true"
android:icon="@mipmap/icon_origin"
android:label="@string/app_name"
android:name=".SketchApplication"
@@ -26,7 +26,7 @@ android:preserveLegacyExternalStorage="true">
<activity
android:name=".MainActivity"
- android:exported="true"
+ android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
android:hardwareAccelerated="true"
android:supportsPictureInPicture="true"
@@ -34,7 +34,7 @@ android:windowSoftInputMode="stateHidden" />
<activity
android:name=".SplashActivity"
- android:exported="true"
+ android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
android:hardwareAccelerated="true"
android:supportsPictureInPicture="true"
@@ -48,11 +48,11 @@ </activity>
<activity
android:name=".DebugActivity"
- android:exported="true"
+ android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name="com.google.android.gms.ads.AdActivity"
- android:exported="true"
+ android:exported="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
<meta-data
|