aboutsummaryrefslogtreecommitdiff
path: root/sample/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-08-29 18:06:56 -0400
committerAllan Wang <me@allanwang.ca>2017-08-30 12:24:19 -0400
commit33977d96c6d19a0696dcc08423baba925b219fc3 (patch)
tree752c432c30296e2780f0c9377960fbbdcff092c9 /sample/build.gradle
parent275db52ea976c86569fb4daf230a59a6f2606899 (diff)
downloadkau-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 'sample/build.gradle')
-rw-r--r--sample/build.gradle31
1 files changed, 15 insertions, 16 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index ac6ee20..6526306 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -81,25 +81,24 @@ android {
}
dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile project(':about')
- compile project(':adapter')
- compile project(':colorpicker')
- compile project(':core')
- compile project(':core-ui')
- compile project(':kpref-activity')
- compile project(':searchview')
- compile project(':mediapicker')
- compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar"
- compile "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}"
+ implementation project(':about')
+ implementation project(':adapter')
+ implementation project(':colorpicker')
+ implementation project(':core')
+ implementation project(':core-ui')
+ implementation project(':kpref-activity')
+ implementation project(':searchview')
+ implementation project(':mediapicker')
+ implementation "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar"
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:${KOTLIN}"
- androidTestCompile("com.android.support.test.espresso:espresso-core:${ESPRESSO}") {
+ androidTestImplementation("com.android.support.test.espresso:espresso-core:${ESPRESSO}") {
exclude group: 'com.android.support', module: 'support-annotations'
}
- androidTestCompile("com.android.support.test:runner:${TEST_RUNNER}") {
+ androidTestImplementation("com.android.support.test:runner:${TEST_RUNNER}") {
exclude group: 'com.android.support', module: 'support-annotations'
}
- androidTestCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
- testCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
- testCompile "junit:junit:${JUNIT}"
+ androidTestImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
+ testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
+ testImplementation "junit:junit:${JUNIT}"
}