summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorjandegr <jandegr@users.noreply.github.com>2018-05-02 21:22:17 +0200
committerGitHub <noreply@github.com>2018-05-02 21:22:17 +0200
commitc6e644ec7702dbe80712e775f59215ce2df0dedc (patch)
treed6bf5460b26e44009482296a0b62cdf69b666fe5 /build.gradle
parent3de4a6cccf934cbd169e8189b782f440b3dd04d0 (diff)
downloadnavit-c6e644ec7702dbe80712e775f59215ce2df0dedc.tar.gz
rework:android:Move build system from ant to grandle (#553)
rework:android:Move build system from ant to grandle
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle23
1 files changed, 23 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 000000000..1ea4bd055
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,23 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:2.3.0'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}