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 /about/build.gradle | |
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 'about/build.gradle')
-rw-r--r-- | about/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/about/build.gradle b/about/build.gradle index 3ee1a48..4794178 100644 --- a/about/build.gradle +++ b/about/build.gradle @@ -7,10 +7,10 @@ android { } dependencies { - compile project(':core-ui') - compile project(':adapter') + implementation project(':core-ui') + implementation project(':adapter') - compile("com.mikepenz:aboutlibraries:${ABOUT_LIBRARIES}@aar") { + api("com.mikepenz:aboutlibraries:${ABOUT_LIBRARIES}@aar") { transitive = false } } |