Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit 1f6f213

Browse files
author
Deniz Veli
committed
Don't trust the updates: gradle plugin 0.7.3 instead of 0.7.+ (#16 & #17)
1 parent 728f12d commit 1f6f213

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Alternatively import the `/library` project into your Android Studio project and
3838

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

41-
* Android Gradle plugin v0.7.+ - `com.android.tools.build:gradle:0.7.+`
41+
* Android Gradle plugin v0.7.+ - `com.android.tools.build:gradle:0.7.3`
4242
* Android Support Library v19 - `com.android.support:support-v4:19.0.+`
4343

4444
Still use Eclipse/building with Ant? You can still use AndroidStaggeredGrid, it's just a few extra steps (left up to the read).
@@ -91,11 +91,12 @@ TODO
9191

9292
The `StaggeredGridView` does not support the following:
9393

94+
* Item selector drawables
95+
* Item long press event
9496
* Scroll bars
9597
* Row dividers
9698
* Edge effect
9799
* Fading edge
98-
* Item selection or long press
99100
* Overscroll
100101

101102
License

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55

66
dependencies {
7-
classpath 'com.android.tools.build:gradle:0.7.+'
7+
classpath 'com.android.tools.build:gradle:0.7.3'
88
}
99
}
1010

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:0.7.+'
6+
classpath 'com.android.tools.build:gradle:0.7.3'
77
}
88
}
99
apply plugin: 'android-library'

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:0.7.+'
6+
classpath 'com.android.tools.build:gradle:0.7.3'
77
}
88
}
99
apply plugin: 'android'

0 commit comments

Comments
 (0)