Skip to content

Commit 6710492

Browse files
committed
Version 1.21.0
1 parent 1ebad85 commit 6710492

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

2+
1.21.0 / 2017-10-17
3+
===================
4+
5+
* Fix Android O compatibility issues
6+
* Implement cancellation for in-progress requests.
7+
* Sample app improvements and fixes.
8+
* Add signing to gradle build
9+
210
1.20.0 / 2017-08-07
311
===================
412

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ For Android, Cloudinary provides a library for simplifying the integration even
1515
## Gradle Integration
1616
Add the following dependency to your build.gradle:
1717

18-
`compile group: 'com.cloudinary', name: 'cloudinary-android', version: '1.20.0'`
18+
`compile group: 'com.cloudinary', name: 'cloudinary-android', version: '1.21.0'`
1919

2020
## Manual Setup ######################################################################
21-
Download cloudinary-android-1.20.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-android/1.20.0/cloudinary-android-1.20.0.aar) and cloudinary-core-1.14.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-core/1.14.0/cloudinary-core-1.14.0.jar) and put them in your libs folder.
21+
Download cloudinary-android-1.21.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-android/1.21.0/cloudinary-android-1.21.0.aar) and cloudinary-core-1.14.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-core/1.14.0/cloudinary-core-1.14.0.jar) and put them in your libs folder.
2222

2323
## Maven Integration ######################################################################
2424
The cloudinary_java library is available in [Maven Central](http://repo1.maven.org/maven/). To use it, add the following dependency to your pom.xml:
2525

2626
<dependency>
2727
<groupId>com.cloudinary</groupId>
2828
<artifactId>cloudinary-android</artifactId>
29-
<version>1.20.0</version>
29+
<version>1.21.0</version>
3030
</dependency>
3131

3232

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ [email protected]
1313

1414
# These two properties must use these exact names to be compatible with 'gradle install' plugin.
1515
group=com.cloudinary
16-
version=1.20.0
16+
version=1.21.0
1717
cloudinaryLibsVersion=1.16.0
1818
androidSupportVersion=26.0.1
1919
org.gradle.jvmargs=-Xmx1024m

lib/src/main/java/com/cloudinary/android/MediaManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}.
3131
*/
3232
public class MediaManager {
33-
public static final String VERSION = "1.20.0";
33+
public static final String VERSION = "1.21.0";
3434
public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID";
3535
public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS";
3636
public static final String ACTION_REQUEST_STARTED = "com.cloudinary.ACTION_REQUEST_STARTED";

0 commit comments

Comments
 (0)