Skip to content

Commit 7811af2

Browse files
committed
Proper support-annotations version, provided. Fixes #231
1 parent 80379b5 commit 7811af2

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ buildscript {
2020
}
2121

2222
dependencies {
23-
classpath 'com.android.tools.build:gradle:0.12.+'
24-
classpath 'org.ajoberstar:gradle-git:0.9.+'
23+
classpath 'com.android.tools.build:gradle:0.12.2'
24+
classpath 'org.ajoberstar:gradle-git:0.9.0'
2525
}
2626
}
2727

example/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
apply plugin: 'com.android.application'
1818

1919
dependencies {
20-
//noinspection GradleDependency
21-
compile 'com.android.support:support-v4:19.1.+'
20+
compile 'com.android.support:support-annotations:20.0.0'
21+
22+
compile 'com.android.support:support-v4:20.0.0'
2223
compile 'se.emilsjolander:stickylistheaders:2.5.0'
2324

2425
compile project(':lib-core')

lib-core-slh/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ apply from: '../generateJavadoc.gradle'
2222
apply from: '../publishGhPages.gradle'
2323

2424
dependencies {
25+
provided 'com.android.support:support-annotations:20.0.0'
26+
2527
compile project(':lib-core')
2628

2729
compile 'se.emilsjolander:stickylistheaders:2.5.0'

lib-core/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ apply from: '../generateJavadoc.gradle'
2222
apply from: '../publishGhPages.gradle'
2323

2424
dependencies {
25+
provided 'com.android.support:support-annotations:20.0.0'
26+
2527
compile 'com.nineoldandroids:library:2.4.0'
26-
compile 'com.android.support:support-annotations:+'
2728

2829
/* Test libraries */
2930
androidTestCompile ('org.mockito:mockito-core:1.9.5') { exclude group: 'org.hamcrest' }

lib-manipulation/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ apply from: '../generateJavadoc.gradle'
2222
apply from: '../publishGhPages.gradle'
2323

2424
dependencies {
25+
provided 'com.android.support:support-annotations:20.0.0'
26+
2527
compile project(':lib-core')
2628

2729
/* Test libraries */

0 commit comments

Comments
 (0)