File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ android {
1515 defaultConfig {
1616 minSdk = 19 // Use 'minSdk' in Kotlin DSL
1717 targetSdk = 34 // Use 'targetSdk' in Kotlin DSL
18- /* versionCode = 1
19- versionName = "1.0"*/
2018
2119 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
2220 consumerProguardFiles(" consumer-rules.pro" )
@@ -37,11 +35,11 @@ android {
3735 }
3836 }
3937 compileOptions {
40- sourceCompatibility = JavaVersion .VERSION_1_8
41- targetCompatibility = JavaVersion .VERSION_1_8
38+ sourceCompatibility = JavaVersion .VERSION_17
39+ targetCompatibility = JavaVersion .VERSION_17
4240 }
4341 kotlinOptions {
44- jvmTarget = " 1.8 "
42+ jvmTarget = JavaVersion . VERSION_17 .toString()
4543 }
4644}
4745
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ android {
2727 }
2828 }
2929 compileOptions {
30- sourceCompatibility = JavaVersion .VERSION_1_8
31- targetCompatibility = JavaVersion .VERSION_1_8
30+ sourceCompatibility = JavaVersion .VERSION_17
31+ targetCompatibility = JavaVersion .VERSION_17
3232 }
3333 kotlinOptions {
34- jvmTarget = " 1.8 "
34+ jvmTarget = JavaVersion . VERSION_17 .toString()
3535 }
3636}
3737
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ pluginManagement {
33 google()
44 mavenCentral()
55 gradlePluginPortal()
6+ mavenLocal()
67 maven { url = uri(" https://jitpack.io" ) }
78 }
89}
@@ -11,6 +12,7 @@ dependencyResolutionManagement {
1112 repositoriesMode.set(RepositoriesMode .FAIL_ON_PROJECT_REPOS )
1213 repositories {
1314 google()
15+ mavenLocal()
1416 mavenCentral()
1517 maven { url = uri(" https://jitpack.io" ) }
1618 }
You can’t perform that action at this time.
0 commit comments