Skip to content

Commit

Permalink
Merge pull request #17 from eddieringle/update-gradle
Browse files Browse the repository at this point in the history
Merge pull request #17 - Update gradle plugin and wrapper
  • Loading branch information
denizmveli committed Dec 31, 2013
2 parents 33aa569 + 013a8b3 commit 728f12d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Alternatively import the `/library` project into your Android Studio project and

The library is currently configured to be built via Gradle only. It has the following dependencies:

* Android Gradle plugin v0.6.3 - `com.android.tools.build:gradle:0.6.3`
* Android Gradle plugin v0.7.+ - `com.android.tools.build:gradle:0.7.+`
* Android Support Library v19 - `com.android.support:support-v4:19.0.+`

Still use Eclipse/building with Ant? You can still use AndroidStaggeredGrid, it's just a few extra steps (left up to the read).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ allprojects {
repositories {
mavenCentral()
}
}
}
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ dependencies {
}

android {
compileSdkVersion 17
compileSdkVersion 19
buildToolsVersion "19"

defaultConfig {
minSdkVersion 10
targetSdkVersion 17
targetSdkVersion 19
}
}

apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
2 changes: 1 addition & 1 deletion library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
android:versionCode="1"
android:versionName="1.0.0">

<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17" />
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<application />

</manifest>
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ repositories {
}

android {
compileSdkVersion 17
compileSdkVersion 19
buildToolsVersion "19"

defaultConfig {
minSdkVersion 10
targetSdkVersion 17
targetSdkVersion 19
}
}

Expand Down
2 changes: 1 addition & 1 deletion sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />
android:targetSdkVersion="19" />

<application
android:allowBackup="true"
Expand Down

0 comments on commit 728f12d

Please sign in to comment.