summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKRenderTest/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDKRenderTest/build.gradle')
-rw-r--r--platform/android/MapboxGLAndroidSDKRenderTest/build.gradle38
1 files changed, 38 insertions, 0 deletions
diff --git a/platform/android/MapboxGLAndroidSDKRenderTest/build.gradle b/platform/android/MapboxGLAndroidSDKRenderTest/build.gradle
new file mode 100644
index 0000000000..d8ae3b8828
--- /dev/null
+++ b/platform/android/MapboxGLAndroidSDKRenderTest/build.gradle
@@ -0,0 +1,38 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion androidVersions.compileSdkVersion
+
+ defaultConfig {
+ applicationId "com.mapbox.mapboxsdk.test.render"
+ minSdkVersion androidVersions.minSdkVersion
+ targetSdkVersion androidVersions.targetSdkVersion
+ versionCode 1
+ versionName "1.0"
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ dexOptions {
+ maxProcessCount 8
+ javaMaxHeapSize "2g"
+ preDexLibraries true
+ }
+}
+
+dependencies {
+ implementation project(':MapboxGLAndroidSDK')
+ implementation dependenciesList.supportAppcompatV7
+ implementation dependenciesList.supportConstraintLayout
+ testImplementation dependenciesList.junit
+ androidTestImplementation dependenciesList.supportAnnotations
+ androidTestImplementation dependenciesList.testRunner
+ androidTestImplementation dependenciesList.testRules
+ androidTestImplementation dependenciesList.testEspressoCore
+ androidTestImplementation dependenciesList.testEspressoIntents
+ androidTestImplementation dependenciesList.testEspressoContrib
+}