Skip to content

Commit fadbd34

Browse files
Updated Gradle
1 parent a238b58 commit fadbd34

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
compileSdk 35
2828

2929
defaultConfig {
30-
minSdkVersion 19
30+
minSdkVersion 21
3131
targetSdkVersion 35
3232
}
3333
buildTypes {

sample/build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId "com.developer.filepicker.file"
9-
minSdkVersion 19
9+
minSdkVersion 21
1010
targetSdkVersion 35
1111
versionCode 14
1212
versionName "9.2.6"
@@ -20,6 +20,17 @@ android {
2020
buildFeatures {
2121
buildConfig true
2222
}
23+
configurations.all {
24+
resolutionStrategy {
25+
force 'org.jetbrains.kotlin:kotlin-stdlib:1.8.22'
26+
force 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.22'
27+
force 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.22'
28+
}
29+
}
30+
compileOptions {
31+
sourceCompatibility JavaVersion.VERSION_11
32+
targetCompatibility JavaVersion.VERSION_11
33+
}
2334
}
2435

2536
dependencies {

0 commit comments

Comments
 (0)