Skip to content

Commit 2d6ab5b

Browse files
committed
- Use more recent version of the gradle plugin.
- Bumped version to 1.3.1.
1 parent 3447d6f commit 2d6ab5b

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ that was introduced on Android 4.
66

77
This port works on Android 2.1+.
88

9-
The current version of this library is `1.3`.
9+
The current version of this library is `1.3.1`.
1010

1111
How to use
1212
----------
@@ -36,7 +36,7 @@ dependency in your `pom.xml` file:
3636
<dependency>
3737
<groupId>org.jraf</groupId>
3838
<artifactId>android-switch-backport-apklib</artifactId>
39-
<version>1.3</version>
39+
<version>1.3.1</version>
4040
<type>apklib</type>
4141
</dependency>
4242
```
@@ -56,7 +56,7 @@ repositories {
5656
(...)
5757
5858
dependencies {
59-
compile "org.jraf:android-switch-backport:1.3"
59+
compile "org.jraf:android-switch-backport:1.3.1"
6060
}
6161
```
6262

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-bin.zip

library/build.gradle

Lines changed: 2 additions & 3 deletions
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.6.+'
6+
classpath 'com.android.tools.build:gradle:0.8.+'
77
}
88
}
99
apply plugin: 'android-library'
@@ -22,7 +22,6 @@ android {
2222
proguardFile 'proguard-rules.txt'
2323
proguardFile getDefaultProguardFile('proguard-android-optimize.txt')
2424
}
25-
2625
sourceSets {
2726
main {
2827
manifest.srcFile 'AndroidManifest.xml'
@@ -42,7 +41,7 @@ uploadArchives {
4241

4342
pom.groupId = 'org.jraf'
4443
pom.artifactId = 'android-switch-backport'
45-
pom.version = '1.3'
44+
pom.version = '1.3.1'
4645
pom.packaging = 'aar'
4746
}
4847
}

library/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.jraf</groupId>
88
<artifactId>android-switch-backport-apklib</artifactId>
9-
<version>1.3</version>
9+
<version>1.3.1</version>
1010
<packaging>apklib</packaging>
1111
<name>Android Switch Backport</name>
1212
<description>

sample/.classpath

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<classpathentry kind="src" path="src"/>
44
<classpathentry kind="src" path="gen"/>
55
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6-
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
6+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
78
<classpathentry kind="output" path="bin/classes"/>
89
</classpath>

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.6.+'
6+
classpath 'com.android.tools.build:gradle:0.8.+'
77
}
88
}
99
apply plugin: 'android'

0 commit comments

Comments
 (0)