Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Commit 4f1454e

Browse files
Merge pull request #73 from Beaver-Notes/development
fix: removed MANAGE_EXTERNAL_STORAGE
2 parents e5e52fd + 7654faf commit 4f1454e

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
android.buildFeatures.buildConfig true
99
minSdkVersion rootProject.ext.minSdkVersion
1010
targetSdkVersion rootProject.ext.targetSdkVersion
11-
versionCode 6
11+
versionCode 7
1212
versionName "1.6.0"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1414
def googleClientId = project.hasProperty("GOOGLE_CLIENT_ID") ? project.GOOGLE_CLIENT_ID : System.getenv("GOOGLE_CLIENT_ID") ?: ""

android/app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
<!-- Permissions -->
66
<uses-permission android:name="android.permission.INTERNET" />
77
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
9-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
10-
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
8+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
9+
tools:ignore="ScopedStorage" />
10+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
11+
tools:ignore="ScopedStorage" />
1112
<uses-permission android:name="android.permission.ACCESS_MEDIA_LOCATION" />
1213
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
1314
<uses-permission android:name="android.permission.BLUETOOTH" />

0 commit comments

Comments
 (0)