diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-08 20:25:23 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-07-08 20:25:23 -0700 |
commit | 81996038462de1be86643e95d262933c4b96c551 (patch) | |
tree | 39423b28217251e7051f86e9e4f80c47bcba20b2 /sample/build.gradle | |
parent | 880d433e475e5be4e5d91afac145b490f9a959b7 (diff) | |
download | kau-81996038462de1be86643e95d262933c4b96c551.tar.gz kau-81996038462de1be86643e95d262933c4b96c551.tar.bz2 kau-81996038462de1be86643e95d262933c4b96c551.zip |
Move components to separate modules
Diffstat (limited to 'sample/build.gradle')
-rw-r--r-- | sample/build.gradle | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sample/build.gradle b/sample/build.gradle index 66fc619..11b7a60 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -10,7 +10,7 @@ android { buildToolsVersion project.BUILD_TOOLS androidGitVersion { - codeFormat = 'MMNNPP' + codeFormat = 'MMNNPPBB' prefix 'v' } @@ -37,7 +37,13 @@ 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(':searchbar') compile project(':imagepicker') androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' |