Update AndroidManifest.xml

This commit is contained in:
xC3FFF0E 2023-11-14 23:19:06 +08:00 committed by GitHub
parent ba3aafb231
commit a2bfc97d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>