summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/src/main/AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 42c58ee..832dc6a 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -14,6 +14,7 @@
android:requestLegacyExternalStorage="true"
android:icon="@mipmap/xmanager"
android:roundIcon="@mipmap/xmanager_round"
+ android:roundIcon="@mipmap/xmanager_round"
android:label="@string/app_name"
android:name=".xManager"
android:requestLegacyExternalStorage="true"
@@ -23,6 +24,7 @@
<activity
android:name=".MainActivity"
android:exported="true"
+ android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
android:hardwareAccelerated="true"
android:supportsPictureInPicture="true"
@@ -41,10 +43,12 @@
<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
@@ -70,5 +74,14 @@
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
+ <provider
+ android:authorities="com.xc3fff0e.xmanager.provider"
+ android:name="androidx.core.content.FileProvider"
+ android:exported="false"
+ android:grantUriPermissions="true">
+ <meta-data
+ android:name="android.support.FILE_PROVIDER_PATHS"
+ android:resource="@xml/provider_paths"/>
+ </provider>
</application>
</manifest>