fix(android): Enforce Java 17 for all subprojects
This commit is contained in:
parent
702bf87552
commit
7567efe51e
1 changed files with 4 additions and 0 deletions
|
|
@ -22,6 +22,10 @@ allprojects {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
tasks.withType(JavaCompile) {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task clean(type: Delete) {
|
task clean(type: Delete) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue