Migrate from Kotlin synthetics to Jetpack view binding (#5546)

This commit is contained in:
Adam Jones 2024-02-14 09:29:06 +00:00 committed by GitHub
parent b18117bc07
commit 1cbce77d5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 73 additions and 68 deletions

View file

@ -5,7 +5,7 @@ apply from: '../gitutils.gradle'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-parcelize'
apply from: "$rootDir/jacoco.gradle"
def isRunningOnTravisAndIsNotPRBuild = System.getenv("CI") == "true" && file('../play.p12').exists()
@ -357,6 +357,9 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
buildToolsVersion buildToolsVersion
@ -397,7 +400,3 @@ if (isRunningOnTravisAndIsNotPRBuild) {
}
}
}
androidExtensions {
experimental = true
}