File tree Expand file tree Collapse file tree 5 files changed +15
-5
lines changed
Expand file tree Collapse file tree 5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1818 uses : actions/setup-java@v3
1919 with :
2020 distribution : " adopt"
21- java-version : 11
21+ java-version : 17
2222 - name : Get the version
2323 id : tagger
2424 uses : jimschubert/query-tag-action@v2
Original file line number Diff line number Diff line change 1212 runs-on : macOS-latest
1313 strategy :
1414 matrix :
15- java_version : [ 11 ]
15+ java_version : [ 17 ]
1616 steps :
1717 - name : Checkout
1818 uses : actions/checkout@v3.5.3
5959 runs-on : ubuntu-latest
6060 strategy :
6161 matrix :
62- java_version : [ 11 ]
62+ java_version : [ 17 ]
6363 steps :
6464 - name : Checkout
6565 uses : actions/checkout@v3.5.3
Original file line number Diff line number Diff line change @@ -14,7 +14,13 @@ android {
1414 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1515 testInstrumentationRunnerArguments useTestStorageService : ' true'
1616 }
17-
17+ compileOptions {
18+ sourceCompatibility JavaVersion . VERSION_17
19+ targetCompatibility JavaVersion . VERSION_17
20+ }
21+ kotlinOptions {
22+ jvmTarget = ' 17'
23+ }
1824 buildTypes {
1925 release {
2026 minifyEnabled false
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ android {
2525
2626 consumerProguardFiles ' proguard-project.txt'
2727 }
28+ compileOptions {
29+ sourceCompatibility JavaVersion . VERSION_17
30+ targetCompatibility JavaVersion . VERSION_17
31+ }
2832 buildTypes {
2933 release {
3034 minifyEnabled false
Original file line number Diff line number Diff line change 11jdk :
2- - openjdk11
2+ - openjdk17
33install :
44 - ./gradlew :MPChartLib:build :MPChartLib:publishToMavenLocal -x :MPChartLib:test
55 - find . -name "*.aar"
You can’t perform that action at this time.
0 commit comments