Skip to content

Commit

Permalink
compileOptions java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed May 10, 2024
1 parent 41655fd commit f0250fe
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
5 changes: 4 additions & 1 deletion applications/HelloIOIO/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments useTestStorageService: 'true'
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions applications/HolidayIOIO/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments useTestStorageService: 'true'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}

dependencies {
Expand Down
5 changes: 5 additions & 0 deletions applications/IOIOManager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ android {
testInstrumentationRunnerArguments useTestStorageService: 'true'
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

buildTypes {
release {
minifyEnabled true
Expand Down
4 changes: 4 additions & 0 deletions applications/IOIOSimpleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments useTestStorageService: 'true'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}

dependencies {
Expand Down

0 comments on commit f0250fe

Please sign in to comment.