Skip to content

Commit 67a1f90

Browse files
authored
Merge pull request #80 from zeoflow/manifest-permission
Removed unwanted permissions from manifest
2 parents 113fa2e + d169d4d commit 67a1f90

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

catalog/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ android {
2929
dependencies {
3030
implementation fileTree(dir: "libs", include: ["*.jar"])
3131
implementation project(':flow-kit')
32-
implementation 'com.zeoflow:material-elements:2.4.5'
32+
implementation 'com.zeoflow:material-elements:2.5.0'
3333
}

flow-kit/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@ dependencies {
3434
implementation fileTree(dir: 'libs', include: ['*.jar'])
3535

3636
implementation 'com.zeoflow:zson:1.3.0'
37-
implementation 'com.zeoflow:material-elements:2.4.5'
38-
implementation 'com.zeoflow:stylar:1.1.0'
37+
implementation 'com.zeoflow:material-elements:2.5.0'
38+
implementation('com.zeoflow:stylar:1.1.0') {
39+
exclude group: 'com.zeoflow', module: 'flow-kit'
40+
}
3941

4042
implementation 'androidx.appcompat:appcompat:1.3.0'
4143
implementation 'androidx.recyclerview:recyclerview:1.2.1'
42-
implementation 'androidx.fragment:fragment:1.3.4'
44+
implementation 'androidx.fragment:fragment:1.3.5'
4345

4446
implementation("com.google.guava:guava:30.0-android")
4547
implementation("com.google.crypto.tink:tink-android:1.5.0")

flow-kit/src/main/AndroidManifest.xml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.zeoflow.flow.kit">
55

6-
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
7-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
8-
android:maxSdkVersion="28" />
9-
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
10-
tools:ignore="ScopedStorage" />
11-
12-
<application
13-
android:requestLegacyExternalStorage="true">
6+
<application>
147

158
<provider
169
android:name="com.zeoflow.initializer.ZeoFlowInitProvider"

0 commit comments

Comments
 (0)