Skip to content

Commit ab60806

Browse files
committed
Version 3.1.0
1 parent a9b13f0 commit ab60806

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
3.1.0 / 2025-19-06
2+
==================
3+
4+
Other Changes
5+
-------------
6+
* Bump Java SDK version
7+
* Make utility classes proper utilities
8+
* Bump api level to 34
9+
110
3.0.2 / 2024-25-09
211
==================
312

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.0.2'`
44+
`implementation 'com.cloudinary:cloudinary-android:3.1.0'`
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.0.2</version>
51+
<version>3.1.0</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.0.2";
42+
public static final String VERSION = "3.1.0";
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: 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=3.0.2
16+
version=3.1.0
1717
cloudinaryLibsVersion=2.3.0
1818

1919
org.gradle.jvmargs=-Xmx1024m

0 commit comments

Comments
 (0)