Migrate from Kotlin synthetics to Jetpack view binding

https://developer.android.com/topic/libraries/view-binding/migration
This commit is contained in:
Josia Pietsch 2024-07-31 17:08:41 +02:00
parent ebc2e5ca2a
commit 178865c6cf
Signed by: jrpie
GPG key ID: E70B571D66986A2D
19 changed files with 192 additions and 125 deletions

View file

@ -1,15 +1,18 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.21'
ext.kotlin_version = '2.0.0'
ext.android_plugin_version = '8.5.1'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.android.tools.build:gradle:8.5.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.android.tools.build:gradle:$android_plugin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@ -27,3 +30,4 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}