summaryrefslogtreecommitdiff
path: root/test/android/build.gradle
diff options
context:
space:
mode:
authorJuha Alanen <juha.alanen@mapbox.com>2019-12-19 15:55:39 +0200
committerJuha Alanen <juha.alanen@mapbox.com>2020-01-10 17:19:30 +0200
commit0b3942572e5fc7be575ff15c82a9e31d508609f7 (patch)
treed3ef09c2117a03bee3b85f5e62a5b9a10c285a9c /test/android/build.gradle
parentf24e4ca0689c023cf5499c4a78ba7a20b3e9a4c0 (diff)
downloadqtlocation-mapboxgl-0b3942572e5fc7be575ff15c82a9e31d508609f7.tar.gz
[test] Run unit tests as NativeActivity application on Android
Diffstat (limited to 'test/android/build.gradle')
-rw-r--r--test/android/build.gradle21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/android/build.gradle b/test/android/build.gradle
new file mode 100644
index 0000000000..de7242684e
--- /dev/null
+++ b/test/android/build.gradle
@@ -0,0 +1,21 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ repositories {
+ google()
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.5.3'
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}