Skip to content

Commit 28abe93

Browse files
committed
Version 1.26.0
1 parent 21ef6e2 commit 28abe93

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

CHANGELOG.md

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

2+
1.26.0 / 2019-02-13
3+
===================
4+
5+
New functionality
6+
-----------------
7+
8+
* Generate https urls by default when running on Android 9 and above. (#81)
9+
* Add support for gs:// urls in uploader (#87)
10+
* Add support for `read_timeout` and `connect_timeout` in uploads.
11+
12+
Other changes
13+
-------------
14+
15+
* Remove advanced samples and bump gradle plugin version (#85)
16+
* Bump cloudinary-core version to 1.22 (#86)
17+
* Update README.md (#84)
18+
* Fix exception type thrown for non-existing absolute paths. (#83)
19+
* Modify user agent to explicitly use cloudinary-core version (#82)
20+
* Fix upload progress callback step size when file size is unknown. (#80)
21+
* Update tools versions and fix project setup (#79)
22+
223
1.25.0 / 2018-08-23
324
===================
425

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ The library requires Android version 4.0.3 (Ice Cream Sandwich) and up.
1717
## Gradle Integration
1818
Add the following dependency to your build.gradle:
1919

20-
`compile group: 'com.cloudinary', name: 'cloudinary-android', version: '1.25.0'`
20+
`compile group: 'com.cloudinary', name: 'cloudinary-android', version: '1.26.0'`
2121

2222
## Manual Setup ######################################################################
23-
Download cloudinary-android-1.25.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-android/1.25.0/cloudinary-android-1.25.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.
23+
Download cloudinary-android-1.26.0.jar from [here](http://central.maven.org/maven2/com/cloudinary/cloudinary-android/1.26.0/cloudinary-android-1.26.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.
2424

2525
## Maven Integration ######################################################################
2626
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:
2727

2828
<dependency>
2929
<groupId>com.cloudinary</groupId>
3030
<artifactId>cloudinary-android</artifactId>
31-
<version>1.25.0</version>
31+
<version>1.26.0</version>
3232
</dependency>
3333

3434

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.25.0
16+
version=1.26.0
1717
cloudinaryLibsVersion=1.22.0
1818
androidSupportVersion=28.0.0
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
@@ -38,7 +38,7 @@
3838
* Must be initialized before use, see {@link #init(Context, SignatureProvider, Map)}.
3939
*/
4040
public class MediaManager {
41-
public static final String VERSION = "1.25.0";
41+
public static final String VERSION = "1.26.0";
4242
public static final String INTENT_EXTRA_REQUEST_ID = "INTENT_EXTRA_REQUEST_ID";
4343
public static final String INTENT_EXTRA_REQUEST_RESULT_STATUS = "INTENT_EXTRA_REQUEST_RESULT_STATUS";
4444
public static final String ACTION_REQUEST_STARTED = "com.cloudinary.ACTION_REQUEST_STARTED";

0 commit comments

Comments
 (0)