Skip to content

Commit aa730ac

Browse files
committed
Version 3.0.0
1 parent f43fc6a commit aa730ac

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
3.0.0 / 2024-19-09
2+
==================
3+
4+
Other Changes
5+
-------------
6+
* Bump fresco version
7+
* Bump Java minimum version to 11
8+
* Bump minSdkVersion to 21
9+
110
2.8.0 / 2024-01-15
211
==================
312
Other Changes

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,24 @@ For the complete documentation, see the [Android SDK Guide](https://cloudinary.c
3131
## Version Support
3232
| Cloudinary SDK | Android SDK |
3333
|----------------|-------------|
34-
| 2.x | > 19 |
35-
| 1.x | > 14 |
34+
| 3.x | > 21 |
35+
| 2.x | > 19 |
36+
| 1.x | > 14 |
3637

3738

3839
## Installation
3940

4041
### Gradle Integration
4142
Add the following dependency to your build.gradle:
4243

43-
`implementation 'com.cloudinary:cloudinary-android:2.8.0'`
44+
`implementation 'com.cloudinary:cloudinary-android:3.0.0'`
4445
### Other Options ######################################################################
4546
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:
4647

4748
<dependency>
4849
<groupId>com.cloudinary</groupId>
4950
<artifactId>cloudinary-android</artifactId>
50-
<version>2.8.0</version>
51+
<version>3.0.0</version>
5152
</dependency>
5253

5354
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
@@ -42,7 +42,7 @@
4242
* Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}.
4343
*/
4444
public class MediaManager {
45-
public static final String VERSION = "2.8.0";
45+
public static final String VERSION = "3.0.0";
4646
public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID";
4747
public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS";
4848
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=2.8.0
16+
version=3.0.0
1717
cloudinaryLibsVersion=1.38.0
1818

1919
org.gradle.jvmargs=-Xmx1024m

0 commit comments

Comments
 (0)