diff options
author | Allan Wang <me@allanwang.ca> | 2017-08-29 18:06:56 -0400 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-08-30 12:24:19 -0400 |
commit | 33977d96c6d19a0696dcc08423baba925b219fc3 (patch) | |
tree | 752c432c30296e2780f0c9377960fbbdcff092c9 /core | |
parent | 275db52ea976c86569fb4daf230a59a6f2606899 (diff) | |
download | kau-33977d96c6d19a0696dcc08423baba925b219fc3.tar.gz kau-33977d96c6d19a0696dcc08423baba925b219fc3.tar.bz2 kau-33977d96c6d19a0696dcc08423baba925b219fc3.zip |
Feature/gradle 4.x (#47)
* Update to api and implementation
* Update gradle
* Add missing dependency
* Update readme
* Update external dependencies
Diffstat (limited to 'core')
-rw-r--r-- | core/build.gradle | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/core/build.gradle b/core/build.gradle index cdd7859..23ed412 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -3,21 +3,21 @@ ext.kauSubModuleMinSdk = project.CORE_MIN_SDK apply from: '../android-lib.gradle' dependencies { - compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}" + api "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}" - compile "com.android.support:appcompat-v7:${ANDROID_SUPPORT_LIBS}" - compile "com.android.support:support-v13:${ANDROID_SUPPORT_LIBS}" - compile "com.android.support:design:${ANDROID_SUPPORT_LIBS}" - compile "com.android.support:recyclerview-v7:${ANDROID_SUPPORT_LIBS}" - compile "com.android.support:cardview-v7:${ANDROID_SUPPORT_LIBS}" - compile "com.android.support.constraint:constraint-layout:${CONSTRAINT_LAYOUT}" + api "com.android.support:appcompat-v7:${ANDROID_SUPPORT_LIBS}" + api "com.android.support:support-v13:${ANDROID_SUPPORT_LIBS}" + api "com.android.support:design:${ANDROID_SUPPORT_LIBS}" + api "com.android.support:recyclerview-v7:${ANDROID_SUPPORT_LIBS}" + api "com.android.support:cardview-v7:${ANDROID_SUPPORT_LIBS}" + api "com.android.support.constraint:constraint-layout:${CONSTRAINT_LAYOUT}" - compile "com.mikepenz:iconics-core:${ICONICS}@aar" - compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar" + api "com.mikepenz:iconics-core:${ICONICS}@aar" + api "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar" - compile "com.afollestad.material-dialogs:core:${MATERIAL_DIALOG}" + api "com.afollestad.material-dialogs:core:${MATERIAL_DIALOG}" - compile "org.jetbrains.anko:anko-commons:${ANKO}" + api "org.jetbrains.anko:anko-commons:${ANKO}" } apply from: '../artifacts.gradle' |