Skip to content

Commit

Permalink
Fix dependencies related to JVM and ViewBinding upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
DroidPulkit committed Mar 3, 2024
1 parent 93ab0aa commit 490fafd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 12 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

Expand All @@ -19,11 +18,23 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
}

dataBinding {
enabled = true
}
namespace 'pulkit.com.torontowastewizard'

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '17'
}
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ org.gradle.jvmargs=-Xmx2048m
android.useAndroidX=true

android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false

0 comments on commit 490fafd

Please sign in to comment.