Skip to content

Commit

Permalink
Update to last android version
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertGrobas committed Mar 21, 2015
1 parent e4bb832 commit ff991ee
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
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:0.12.+'
classpath 'com.android.tools.build:gradle:1.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Apr 10 15:27:10 PDT 2013
#Thu Mar 19 22:42:50 CET 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
7 changes: 3 additions & 4 deletions movingimageview/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 'android-19'
buildToolsVersion "20.0.0"
compileSdkVersion 'android-22'
buildToolsVersion "22.0.0"

defaultConfig {
applicationId "net.grobas.view"
minSdkVersion 8
targetSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "0.1"
}
Expand Down
10 changes: 5 additions & 5 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 'android-19'
buildToolsVersion "20.0.0"
compileSdkVersion 'android-22'
buildToolsVersion "22.0.0"

defaultConfig {
applicationId "net.grobas.movingimageview.sample"
minSdkVersion 8
targetSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "0.1"
}
buildTypes {
release {
runProguard false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile project(':movingimageview')
compile 'com.android.support:appcompat-v7:19.+'
compile 'com.android.support:appcompat-v7:22.+'
}

0 comments on commit ff991ee

Please sign in to comment.