aboutsummaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-01-11 00:19:31 -0800
committerAllan Wang <me@allanwang.ca>2021-01-11 00:19:31 -0800
commit5f5389b0fde9d12c56e337dff169fa6319b449cf (patch)
tree8f5ec6bc4c5470b6c6fc3c4b2d732bec5d0d3016 /sample
parent038ad9c3aa4d6678d9ede06cf1ce68b8bdf85021 (diff)
downloadkau-5f5389b0fde9d12c56e337dff169fa6319b449cf.tar.gz
kau-5f5389b0fde9d12c56e337dff169fa6319b449cf.tar.bz2
kau-5f5389b0fde9d12c56e337dff169fa6319b449cf.zip
Remove kotlin synethetics
Diffstat (limited to 'sample')
-rw-r--r--sample/build.gradle7
1 files changed, 4 insertions, 3 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index a39ee2d..4779b91 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -3,7 +3,7 @@ import kau.Dependencies
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
-apply plugin: 'kotlin-android-extensions'
+apply plugin: 'kotlin-parcelize'
//apply plugin: 'com.bugsnag.android.gradle'
apply plugin: 'com.github.triplet.play'
apply plugin: 'dagger.hilt.android.plugin'
@@ -31,8 +31,8 @@ android {
multiDexEnabled true
testInstrumentationRunner "ca.allanwang.kau.sample.SampleTestRunner"
}
- buildFeatures {
- viewBinding = true
+ viewBinding {
+ enabled true
}
def releaseSigning = file("../files/kau.properties")
@@ -86,6 +86,7 @@ android {
pickFirst 'META-INF/core_release.kotlin_module'
pickFirst 'META-INF/library_release.kotlin_module'
pickFirst 'META-INF/library-core_release.kotlin_module'
+ exclude "**/module-info.class"
}
compileOptions {