forked from Esri/arcgis-runtime-samples-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (26 loc) · 995 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "com.esri.arcgisruntime.sample.locationlineofsight"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility rootProject.ext.targetJavaVersion
sourceCompatibility rootProject.ext.sourceJavaVersion
}
}
dependencies {
// arcgis-android & appcompat lib dependencies from rootProject build.gradle
implementation "com.android.support.constraint:constraint-layout:$constraintLayoutVersion"
}