Bug 1821005 - Set compileOptions for android subprojects.

This avoids jvm inconsistencies.
fenix/121.0
mcarare 8 months ago committed by mergify[bot]
parent 7e56bcfda0
commit 73609c4133

@ -175,6 +175,19 @@ allprojects {
}
}
subprojects {
afterEvaluate {
if (it.hasProperty('android')) {
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
}
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}

Loading…
Cancel
Save