From b2db37f70dd59c8a7640a9d04aea7a66c72037dc Mon Sep 17 00:00:00 2001 From: Vlad Lynnik Date: Fri, 29 Nov 2024 15:31:32 +0200 Subject: [PATCH] Non native release updates --- README.md | 6 +++++- gradle.properties | 4 ++-- ucrop/build.gradle | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2de49e51..4245895d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ } ``` - ``` implementation 'com.github.yalantis:ucrop:2.2.9' ``` - lightweight general solution + ``` implementation 'com.github.yalantis:ucrop:2.2.10' ``` - lightweight general solution ``` implementation 'com.github.yalantis:ucrop:2.2.9-native' ``` - get power of the native code to preserve image quality (+ about 1.5 MB to an apk size) @@ -99,6 +99,10 @@ Since version 2.2.7 in case if you need to change transport protocol, setup time # Changelog +### Version: 2.2.10 + +* Fixed [#926](https://github.com/Yalantis/uCrop/issues/926) + ### Version: 2.2.9 * Update compileSdk and targetSdk versions up to 33 diff --git a/gradle.properties b/gradle.properties index 9544bdc0..94e98947 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=2.2.9-native -VERSION_CODE=27 +VERSION_NAME=2.2.10-native +VERSION_CODE=28 GROUP=com.yalantis POM_DESCRIPTION=Android Library for cropping images diff --git a/ucrop/build.gradle b/ucrop/build.gradle index bc1a3e8a..40a6612e 100644 --- a/ucrop/build.gradle +++ b/ucrop/build.gradle @@ -6,8 +6,8 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 33 - versionCode 27 - versionName "2.2.9-native" + versionCode 28 + versionName "2.2.10-native" vectorDrawables.useSupportLibrary = true }