From 3ac6b00a7e1a2b574e48a8995f7be5756c3dcf89 Mon Sep 17 00:00:00 2001 From: Jonas Hartwig Date: Wed, 18 Mar 2026 09:05:08 +0100 Subject: [PATCH] release update --- CHANGELOG.md | 19 ++++++++++++++++++- build.gradle | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd020ce..cd4d319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,25 @@ # PhotoEditor SDK - Changelog -## Unreleased +## v10.10.12 +### Fixed +* [Gradle Plugin] Fixed AGP 9 compatibility for projects using built-in Kotlin. + * Prevents `kotlin-kapt` from being applied when KSP is used, avoiding the AGP 9 error: + * `The 'org.jetbrains.kotlin.kapt' plugin is not compatible with built-in Kotlin support` + * Improves KSP/KAPT plugin handling for newer Android Gradle Plugin versions. + +## v10.10.11 +### Fixed +* `ConfigLoader` (React Native, Flutter, Cordova/Ionic). + * `forceCrop` now only opens the transform tool when the asset does not match an allowed aspect ratio (aligns Android behavior with iOS). + * `EditorSDKResult` now reports updated `resultWidth`/`resultHeight` for video exports (including crops). +### Breaking Changes +* `ConfigLoader` (React Native, Flutter, Cordova/Ionic). + * `forceCrop` on Android, no longer always opens the transform tool. To keep the old behavior, set `UiConfigAspect.forceCropMode = UiConfigAspect.ForceCrop.SHOW_TOOL_ALWAYS` via the native `SettingsList.configure { ... }` interface. + +## v10.10.10 ### Fixed * Prevent crash when `EditorActivity` is recreated without the required `SettingsList` (e.g. after process death). The activity now finishes so the host app can relaunch via `PhotoEditorBuilder`/`CameraPreviewBuilder`. + ## v10.10.9 ## Fixed * Thin green edge on some Android devices with crop metadata video diff --git a/build.gradle b/build.gradle index ab5a441..7c153f4 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext.kotlin_version = '1.8.22' ext.ksp_version = '1.8.22-1.0.11' - ext.pesdk_version = '10.10.10' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases + ext.pesdk_version = '10.10.12' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases repositories { google() gradlePluginPortal()