Skip to content

Commit ab92cf5

Browse files
committed
Fix Android 11 permission
1 parent 79158af commit ab92cf5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
34
package="sk.styk.martin.apkanalyzer">
45

5-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28"/>
6+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" tools:ignore="ScopedStorage" />
67
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
8+
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:ignore="QueryAllPackagesPermission" />
79

810
<application
911
android:name=".ApkAnalyzer"
@@ -62,6 +64,10 @@
6264
android:resource="@xml/provider_paths" />
6365
</provider>
6466

67+
<meta-data
68+
android:name="google_analytics_automatic_screen_reporting_enabled"
69+
android:value="false" />
70+
6571
</application>
6672

6773
</manifest>

0 commit comments

Comments
 (0)