Skip to content

Commit

Permalink
fix android 13 permission for write
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdi committed Nov 22, 2023
1 parent 9650b12 commit 8c1c24d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
18 changes: 10 additions & 8 deletions FilePicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,17 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

publishing {
publications {
release(MavenPublication) {
groupId = 'com.mahdiasd'
artifactId = 'com.mahdiasd.filepicker'
version = '2.1.0'

afterEvaluate {
afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
// Applies the component for the release build variant.
from components.release
// You can then customize attributes of the publication as shown below.
groupId = 'com.filepicker'
artifactId = 'file_picker'
version = '2.1.2'
}
}
}
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false

}

task clean(type: Delete) {
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pluginManagement {
gradlePluginPortal()
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
dependencyResolutionManagement {
Expand Down

0 comments on commit 8c1c24d

Please sign in to comment.