diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2023-12-14 14:09:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 14:09:52 +0100 |
commit | 4a84f684c095ebfc05a74a92ee2f08abcbfda98f (patch) | |
tree | 8cc55d01643965e887c5f3ad6fca2a02b321a695 /app/src | |
parent | Update styles.xml (diff) | |
download | xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.tar xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.tar.gz xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.tar.bz2 xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.tar.lz xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.tar.xz xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.tar.zst xManager-4a84f684c095ebfc05a74a92ee2f08abcbfda98f.zip |
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 832dc6a..caa7677 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -9,12 +9,12 @@ <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
+ <uses-permission android:name="android:name=com.google.android.gms.permission.AD_ID" />
<application
android:allowBackup="true"
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"
@@ -24,7 +24,6 @@ <activity
android:name=".MainActivity"
android:exported="true"
- android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|smallestScreenSize|screenLayout"
android:hardwareAccelerated="true"
android:supportsPictureInPicture="true"
@@ -43,12 +42,10 @@ <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
@@ -74,14 +71,8 @@ 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>
+ <meta-data
+ android:name="com.google.android.gms.ads.APPLICATION_ID"
+ android:value="null~null"/>
</application>
</manifest>
|