aboutsummaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-06-07 14:21:53 -0400
committerAllan Wang <me@allanwang.ca>2019-06-07 14:21:53 -0400
commit6fedbcdbc51e3cbc93b920f3fda573e1d2ec780b (patch)
treeb01d8c13c5a91994e619a6865d2a8341575ebfee /sample
parent2c20c8bd36589e96388a0bfe851e7229d7f7cf58 (diff)
downloadkau-6fedbcdbc51e3cbc93b920f3fda573e1d2ec780b.tar.gz
kau-6fedbcdbc51e3cbc93b920f3fda573e1d2ec780b.tar.bz2
kau-6fedbcdbc51e3cbc93b920f3fda573e1d2ec780b.zip
Remove package name
Diffstat (limited to 'sample')
-rw-r--r--sample/build.gradle26
1 files changed, 13 insertions, 13 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index bb7cab0..b443f51 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -9,8 +9,8 @@ play {
}
android {
- compileSdkVersion kau.targetSdk
- buildToolsVersion kau.buildTools
+ compileSdkVersion Versions.targetSdk
+ buildToolsVersion Versions.buildTools
androidGitVersion {
codeFormat = 'MMNNPPXX'
@@ -19,8 +19,8 @@ android {
defaultConfig {
applicationId "ca.allanwang.kau.sample"
- minSdkVersion kau.minSdk
- targetSdkVersion kau.targetSdk
+ minSdkVersion Versions.minSdk
+ targetSdkVersion Versions.targetSdk
versionName androidGitVersion.name()
versionCode androidGitVersion.code()
multiDexEnabled true
@@ -122,15 +122,15 @@ dependencies {
implementation project(':searchview')
implementation project(':mediapicker')
- implementation "com.afollestad.material-dialogs:input:${kau.materialDialog}"
+ implementation "com.afollestad.material-dialogs:input:${Versions.materialDialog}"
- testImplementation kauDependency.kotlinTest
- testImplementation kauDependency.junit
+ testImplementation Dependencies..kotlinTest
+ testImplementation Dependencies..junit
- androidTestImplementation kauDependency.kotlinTest
- androidTestImplementation kauDependency.espresso
- androidTestImplementation "androidx.test.espresso:espresso-intents:${kau.espresso}"
- androidTestImplementation "androidx.test.espresso:espresso-contrib:${kau.espresso}"
- androidTestImplementation kauDependency.testRules
- androidTestImplementation kauDependency.testRunner
+ androidTestImplementation Dependencies..kotlinTest
+ androidTestImplementation Dependencies..espresso
+ androidTestImplementation "androidx.test.espresso:espresso-intents:${Versions.espresso}"
+ androidTestImplementation "androidx.test.espresso:espresso-contrib:${Versions.espresso}"
+ androidTestImplementation Dependencies..testRules
+ androidTestImplementation Dependencies..testRunner
}