aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/build.gradle1
-rw-r--r--settings.gradle1
-rw-r--r--showcaseview/build.gradle27
3 files changed, 29 insertions, 0 deletions
diff --git a/main/build.gradle b/main/build.gradle
index def102f..0033acd 100644
--- a/main/build.gradle
+++ b/main/build.gradle
@@ -146,6 +146,7 @@ dependencies {
compile "org.androidannotations:androidannotations-api:$AAVersion"
compile project(":mapswithme-api")
+ compile project(":showcaseview")
compile files('libs/httpclientandroidlib-1.1.2.jar')
compile files('libs/locus-api-4.0.jar')
diff --git a/settings.gradle b/settings.gradle
index 9108f7f..00f02f3 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,4 +1,5 @@
include ':mapswithme-api'
+include ':showcaseview'
include ':main'
//include ':cgeo-calendar'
//include ':cgeo-contacts'
diff --git a/showcaseview/build.gradle b/showcaseview/build.gradle
new file mode 100644
index 0000000..0ebebe4
--- /dev/null
+++ b/showcaseview/build.gradle
@@ -0,0 +1,27 @@
+apply plugin: 'android-library'
+
+android {
+ compileSdkVersion 19
+ buildToolsVersion "20"
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['java']
+ resources.srcDirs = ['java']
+ aidl.srcDirs = ['java']
+ renderscript.srcDirs = ['java']
+ res.srcDirs = ['res']
+ assets.srcDirs = ['assets']
+ }
+
+ // Move the build types to build-types/<type>
+ // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
+ // This moves them out of them default location under src/<type>/... which would
+ // conflict with src/ being used by the main source set.
+ // Adding new build types or product flavors should be accompanied
+ // by a similar customization.
+ debug.setRoot('build-types/debug')
+ release.setRoot('build-types/release')
+ }
+}