Skip to content

Commit d66710f

Browse files
committed
Version 3.1.1
1 parent ea66c16 commit d66710f

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ For the complete documentation, see the [Android SDK Guide](https://cloudinary.c
4141
### Gradle Integration
4242
Add the following dependency to your build.gradle:
4343

44-
`implementation 'com.cloudinary:cloudinary-android:3.1.0'`
44+
`implementation 'com.cloudinary:cloudinary-android:3.1.1'`
4545
### Other Options ######################################################################
4646
The cloudinary_android library is available in [Maven Central](http://repo1.maven.org/maven/). To use it, add the following dependency to your pom.xml:
4747

4848
<dependency>
4949
<groupId>com.cloudinary</groupId>
5050
<artifactId>cloudinary-android</artifactId>
51-
<version>3.1.0</version>
51+
<version>3.1.1</version>
5252
</dependency>
5353

5454
Download the latest cloudinary-android from [here](https://mvnrepository.com/artifact/com.cloudinary/cloudinary-android-core) and the latest cloudinary-core from [here](https://mvnrepository.com/artifact/com.cloudinary/cloudinary-core) and put them in your libs folder.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}.
4040
*/
4141
public class MediaManager {
42-
public static final String VERSION = "3.1.0";
42+
public static final String VERSION = "3.1.1";
4343
public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID";
4444
public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS";
4545
public static final String ACTION_REQUEST_STARTED = "com.cloudinary.ACTION_REQUEST_STARTED";

gradle.properties

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
publishRepo=https://oss.sonatype.org/service/local/staging/deploy/maven2/
2-
snapshotRepo=https://oss.sonatype.org/content/repositories/snapshots/
3-
publishDescription=Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline. Upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software. Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements. Images are seamlessly delivered through a fast CDN, and much much more. This Java library allows to easily integrate with Cloudinary in Java applications.
1+
# Removed old dead repository URLs - these are now handled in publish.gradle
2+
# publishRepo=https://oss.sonatype.org/service/local/staging/deploy/maven2/
3+
# snapshotRepo=https://oss.sonatype.org/content/repositories/snapshots/
4+
publishDescription=Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline. Upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software. Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website's graphics requirements. Images are seamlessly delivered through a fast CDN, and much much more. This Java library allows to easily integrate with Cloudinary in Java applications.
45
githubUrl=http://github.com/cloudinary/cloudinary_android
56
scmConnection=scm:git:git://github.com/cloudinary/cloudinary_android.git
6-
scmDeveloperConnection=scm:git:[email protected]:cloudinary/cloudinary_android.git'
7+
scmDeveloperConnection=scm:git:[email protected]:cloudinary/cloudinary_android.git
78
scmUrl=http://github.com/cloudinary/cloudinary_android
89
licenseName=MIT
910
licenseUrl=http://opensource.org/licenses/MIT
@@ -13,7 +14,7 @@ [email protected]
1314

1415
# These two properties must use these exact names to be compatible with 'gradle install' plugin.
1516
group=com.cloudinary
16-
version=3.1.0
17+
version=3.1.1
1718
cloudinaryLibsVersion=2.3.0
1819

1920
org.gradle.jvmargs=-Xmx1024m

0 commit comments

Comments
 (0)