Skip to content

Commit

Permalink
added android properties to root project build file
Browse files Browse the repository at this point in the history
  • Loading branch information
doneill committed Dec 22, 2014
1 parent 8d86420 commit 863955c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AddCSV2GraphicsLayer/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion "21.1.1"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
applicationId "com.esri.arcgis.android.samples.addcsv2graphic"
Expand Down
4 changes: 2 additions & 2 deletions AttributeEditor/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion "21.1.1"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
applicationId "com.esri.arcgis.android.samples.attributeeditor"
Expand Down
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
}

}

allprojects {
Expand All @@ -18,3 +19,10 @@ allprojects {
}

}

ext {
compileSdkVersion = 19
buildToolsVersion = "21.1.1"
}


0 comments on commit 863955c

Please sign in to comment.