Skip to content

Commit 8c1c24d

Browse files
author
mahdi
committed
fix android 13 permission for write
1 parent 9650b12 commit 8c1c24d

3 files changed

Lines changed: 12 additions & 8 deletions

File tree

FilePicker/build.gradle

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,17 @@ dependencies {
5959
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
6060
}
6161

62-
publishing {
63-
publications {
64-
release(MavenPublication) {
65-
groupId = 'com.mahdiasd'
66-
artifactId = 'com.mahdiasd.filepicker'
67-
version = '2.1.0'
68-
69-
afterEvaluate {
62+
afterEvaluate {
63+
publishing {
64+
publications {
65+
// Creates a Maven publication called "release".
66+
release(MavenPublication) {
67+
// Applies the component for the release build variant.
7068
from components.release
69+
// You can then customize attributes of the publication as shown below.
70+
groupId = 'com.filepicker'
71+
artifactId = 'file_picker'
72+
version = '2.1.2'
7173
}
7274
}
7375
}

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
id 'com.android.application' version '8.1.1' apply false
44
id 'com.android.library' version '8.1.1' apply false
55
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
6+
67
}
78

89
task clean(type: Delete) {

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pluginManagement {
33
gradlePluginPortal()
44
google()
55
mavenCentral()
6+
maven { url "https://jitpack.io" }
67
}
78
}
89
dependencyResolutionManagement {

0 commit comments

Comments
 (0)