mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 17:04:09 +02:00
Misc cleanups and fixes (#1611)
This commit is contained in:
parent
cd61f58d44
commit
736f84acb4
|
@ -27,7 +27,7 @@ jobs:
|
||||||
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
||||||
|
|
||||||
- name: Verify update publicsuffixes file
|
- name: Verify update publicsuffixes file
|
||||||
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
uses: gradle/gradle-build-action@v2.0.1
|
||||||
if: env.UPDATED == 'true'
|
if: env.UPDATED == 'true'
|
||||||
with:
|
with:
|
||||||
arguments: :autofill-parser:test -PslimTests
|
arguments: :autofill-parser:test -PslimTests
|
||||||
|
|
|
@ -13,6 +13,7 @@ plugins {
|
||||||
`kotlin-dsl-precompiled-script-plugins`
|
`kotlin-dsl-precompiled-script-plugins`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
afterEvaluate {
|
||||||
tasks.withType<JavaCompile>().configureEach {
|
tasks.withType<JavaCompile>().configureEach {
|
||||||
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
||||||
targetCompatibility = JavaVersion.VERSION_11.toString()
|
targetCompatibility = JavaVersion.VERSION_11.toString()
|
||||||
|
@ -21,6 +22,7 @@ tasks.withType<JavaCompile>().configureEach {
|
||||||
tasks.withType<KotlinCompile>().configureEach {
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gradlePlugin {
|
gradlePlugin {
|
||||||
plugins {
|
plugins {
|
||||||
|
|
|
@ -13,6 +13,7 @@ plugins {
|
||||||
`kotlin-dsl-precompiled-script-plugins`
|
`kotlin-dsl-precompiled-script-plugins`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
afterEvaluate {
|
||||||
tasks.withType<JavaCompile>().configureEach {
|
tasks.withType<JavaCompile>().configureEach {
|
||||||
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
||||||
targetCompatibility = JavaVersion.VERSION_11.toString()
|
targetCompatibility = JavaVersion.VERSION_11.toString()
|
||||||
|
@ -21,6 +22,7 @@ tasks.withType<JavaCompile>().configureEach {
|
||||||
tasks.withType<KotlinCompile>().configureEach {
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gradlePlugin {
|
gradlePlugin {
|
||||||
plugins {
|
plugins {
|
||||||
|
|
|
@ -13,6 +13,7 @@ plugins {
|
||||||
`kotlin-dsl-precompiled-script-plugins`
|
`kotlin-dsl-precompiled-script-plugins`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
afterEvaluate {
|
||||||
tasks.withType<JavaCompile>().configureEach {
|
tasks.withType<JavaCompile>().configureEach {
|
||||||
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
sourceCompatibility = JavaVersion.VERSION_11.toString()
|
||||||
targetCompatibility = JavaVersion.VERSION_11.toString()
|
targetCompatibility = JavaVersion.VERSION_11.toString()
|
||||||
|
@ -21,6 +22,7 @@ tasks.withType<JavaCompile>().configureEach {
|
||||||
tasks.withType<KotlinCompile>().configureEach {
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(libs.build.agp)
|
implementation(libs.build.agp)
|
||||||
|
|
Loading…
Reference in a new issue