Skip to content

Commit

Permalink
Updated build tools and SDK to target Android 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjluc committed Oct 20, 2015
1 parent 45f4738 commit 2ba3a5a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion BaseGameUtils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:1.3.0'
}
}

Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "chrisjluc.onesearch"
minSdkVersion 14
targetSdkVersion 22
versionCode 8
versionName "1.0.3"
targetSdkVersion 23
versionCode 9
versionName "1.0.4"
}
buildTypes {
release {
Expand All @@ -23,6 +23,6 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':BaseGameUtils')
compile 'com.android.support:support-v13:22.2.1'
compile 'com.google.android.gms:play-services:7.5.0'
compile 'com.android.support:support-v13:23.1.0'
compile 'com.google.android.gms:play-services:8.1.0'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:1.3.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit 2ba3a5a

Please sign in to comment.