Skip to content

Commit

Permalink
sourceCompatibility JavaVersion.VERSION_11
Browse files Browse the repository at this point in the history
  • Loading branch information
quibbler01 committed May 19, 2023
1 parent 1ea429c commit 9d395f6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions CircleProgress/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
compileSdk 31
compileSdk 33

defaultConfig {
minSdk 26
targetSdk 31
targetSdk 33

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand All @@ -21,14 +21,14 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '11'
}
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.appcompat:appcompat:1.6.0'
}
12 changes: 6 additions & 6 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdk 31
compileSdk 33

buildFeatures {
viewBinding true
Expand All @@ -13,7 +13,7 @@ android {
defaultConfig {
applicationId "cn.quibbler.demo"
minSdk 26
targetSdk 31
targetSdk 33
versionCode 1
versionName "1.0"

Expand All @@ -27,16 +27,16 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '11'
}
}

dependencies {
implementation project(':CircleProgress')

implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.appcompat:appcompat:1.6.0'
}

0 comments on commit 9d395f6

Please sign in to comment.