diff options
author | Allan Wang <me@allanwang.ca> | 2020-02-29 18:10:34 -0800 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2020-02-29 18:10:34 -0800 |
commit | eb4c4ae2aa084179881dac92bb3469f326545e04 (patch) | |
tree | 5ed45a783f5cda57c67c271fb39cecfa1d91a432 /sample | |
parent | 25bd1b90509fe2b979e3461e0015f71085cb5dc9 (diff) | |
download | kau-eb4c4ae2aa084179881dac92bb3469f326545e04.tar.gz kau-eb4c4ae2aa084179881dac92bb3469f326545e04.tar.bz2 kau-eb4c4ae2aa084179881dac92bb3469f326545e04.zip |
Remove explicit build tools and update viewbinding api usage
Diffstat (limited to 'sample')
-rw-r--r-- | sample/build.gradle | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sample/build.gradle b/sample/build.gradle index 77165e8..96ed78f 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -12,7 +12,6 @@ play { android { compileSdkVersion kau.Versions.targetSdk - buildToolsVersion kau.Versions.buildTools androidGitVersion { codeFormat = 'MMNNPPXX' @@ -28,8 +27,8 @@ android { multiDexEnabled true testInstrumentationRunner "ca.allanwang.kau.sample.SampleTestRunner" } - viewBinding { - enabled = true + buildFeatures { + viewBinding = true } def releaseSigning = file("../files/kau.properties") |