summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@Gmail.com>2013-12-23 12:26:55 -0700
committerRyan Houdek <Sonicadvance1@Gmail.com>2013-12-23 12:26:55 -0700
commit86b3719d14e48a2f5d9a61c63ee2a5baff53594a (patch)
treee24e4554d59bd2b0578f8242d39ab8fc7ff9d883 /Source/Android
parent04b87e1dcc43a7cfccb82ad1d0c99e2b6e4772f9 (diff)
[Android] Add a gradle build file for use with Android Studio 4.0
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/build.gradle42
1 files changed, 42 insertions, 0 deletions
diff --git a/Source/Android/build.gradle b/Source/Android/build.gradle
new file mode 100644
index 0000000000..4307c65824
--- /dev/null
+++ b/Source/Android/build.gradle
@@ -0,0 +1,42 @@
+buildscript {
+ repositories {
+ mavenCentral()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:0.5.+'
+ }
+}
+apply plugin: 'android'
+
+dependencies {
+ compile fileTree(dir: 'libs', include: '*.jar')
+}
+
+android {
+ compileSdkVersion 18
+ buildToolsVersion "18.0.1"
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
+ resources.srcDirs = ['src']
+ aidl.srcDirs = ['src']
+ renderscript.srcDirs = ['src']
+ res.srcDirs = ['res']
+ assets.srcDirs = ['assets']
+ }
+
+ // Move the tests to tests/java, tests/res, etc...
+ instrumentTest.setRoot('tests')
+
+ // 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')
+ }
+}