summaryrefslogtreecommitdiff
path: root/CMake/Android/build.gradle.in
diff options
context:
space:
mode:
authorMatthias Melcher <git@matthiasm.com>2019-01-15 01:22:18 +0100
committerMatthias Melcher <git@matthiasm.com>2019-01-15 01:22:18 +0100
commitb450cea7e249d521ba9ebf3d186db45656b9fcc4 (patch)
treea314e25e0a389ae7d1e60fecb602b16db1ac316f /CMake/Android/build.gradle.in
parente25511131b08c839f32515da87333db78f24d630 (diff)
Android: starting to use CMake to build AndroidStudio files.
Diffstat (limited to 'CMake/Android/build.gradle.in')
-rw-r--r--CMake/Android/build.gradle.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/CMake/Android/build.gradle.in b/CMake/Android/build.gradle.in
new file mode 100644
index 000000000..f48a2c6ec
--- /dev/null
+++ b/CMake/Android/build.gradle.in
@@ -0,0 +1,17 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ repositories {
+ jcenter()
+ google()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.2.1'
+ }
+}
+
+allprojects {
+ repositories {
+ jcenter()
+ google()
+ }
+}