diff options
author | Allan Wang <me@allanwang.ca> | 2019-07-27 21:17:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-27 21:17:30 -0700 |
commit | a3e5863c4f041fae446671ee7e9b84392656e119 (patch) | |
tree | f7b4f407bd1790de37c2b6280bec777697662eb0 /sample/build.gradle | |
parent | d94017e6f6df67e80604111028ea16f6c7f4e077 (diff) | |
parent | 0bab0561f071fca253b75fbcdae453dbd8790cab (diff) | |
download | kau-a3e5863c4f041fae446671ee7e9b84392656e119.tar.gz kau-a3e5863c4f041fae446671ee7e9b84392656e119.tar.bz2 kau-a3e5863c4f041fae446671ee7e9b84392656e119.zip |
Merge pull request #206 from AllanWang/update/fastadapter
Update fastadapter to 4.x.x
Diffstat (limited to 'sample/build.gradle')
-rw-r--r-- | sample/build.gradle | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/sample/build.gradle b/sample/build.gradle index 4e34bf9..ab98695 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -1,3 +1,5 @@ +import kau.Dependencies + apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' @@ -54,8 +56,6 @@ android { buildTypes { debug { - minifyEnabled false - shrinkResources false applicationIdSuffix ".debug" versionNameSuffix "-debug" signingConfig signingConfigs.debug @@ -78,6 +78,7 @@ android { packagingOptions { pickFirst 'META-INF/core_release.kotlin_module' pickFirst 'META-INF/library_release.kotlin_module' + pickFirst 'META-INF/library-core_release.kotlin_module' } compileOptions { @@ -127,15 +128,15 @@ dependencies { implementation project(':searchview') implementation project(':mediapicker') - implementation kau.Dependencies.materialDialog("input") + implementation Dependencies.materialDialog("input") - testImplementation kau.Dependencies.kotlinTest - testImplementation kau.Dependencies.junit + testImplementation Dependencies.kotlinTest + testImplementation Dependencies.junit - androidTestImplementation kau.Dependencies.kotlinTest - androidTestImplementation kau.Dependencies.espresso - androidTestImplementation kau.Dependencies.espresso("intents") - androidTestImplementation kau.Dependencies.espresso("contrib") - androidTestImplementation kau.Dependencies.testRules - androidTestImplementation kau.Dependencies.testRunner + androidTestImplementation Dependencies.kotlinTest + androidTestImplementation Dependencies.espresso + androidTestImplementation Dependencies.espresso("intents") + androidTestImplementation Dependencies.espresso("contrib") + androidTestImplementation Dependencies.testRules + androidTestImplementation Dependencies.testRunner } |