Skip to content

Commit

Permalink
Release 10.8.1 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
svendvd authored and Sven Nähler committed Nov 14, 2023
1 parent 45272ae commit 0318181
Show file tree
Hide file tree
Showing 47 changed files with 25 additions and 929 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '11'
java-version: '17'
distribution: 'adopt'

- name: Assemble
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# PhotoEditor SDK - Changelog
## v10.8.0
## v10.8.1

### Fixed
* [VideoEditorSDK] Video export was limited by the frame rate limiter.
* [VideoEditorSDK] When the video source changes rapidly, there may be issues with the IMGLYFileReader not waiting properly. This can lead to unexpected outcomes, such as trim start and end times not being accurate.
* [VideoEditorSDK] `ArithmeticException` in `VideoCompositionSettings` when source is changed.
* [PhotoEditorSDK] Exporting images on the Pixel 8 (Pro) and maybe other devices, result in an endless export spinner.
Expand All @@ -15,6 +16,7 @@
* ConfigLoader (React Native, Cordova/Ionic)
* `personalVideoClips` is not disabled correctly if the video library is not used.
* Kotlin 1.9.0+ compatibility issues, by using KSP.
* Change

### Changed
* 🚨 Minimum compileSdkVersion version of the `ui:camera` and `backend:camera` module is now 33
Expand All @@ -23,6 +25,9 @@
* 🚨 This feature is automatically enabled when you add the KSP plugin into your project.
* If auto-detection fails, you can manually enable it using the following configuration: `imglyConifg { useKspProcessor = true }`

## ~~v10.8.0~~ (Broken release, don't use it!)
* This version was recalled due to an error

## v10.7.3

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ buildscript {
maven { url "https://artifactory.img.ly/artifactory/imgly" }
}
dependencies {
classpath 'ly.img.android.pesdk:plugin:10.8.0'
classpath 'ly.img.android.pesdk:plugin:10.8.1'
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.6.21-1.0.6")
}
}
Expand Down
8 changes: 5 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,15 @@ imglyConfig {
}

android {
compileSdkVersion 31
buildToolsVersion '30.0.3'
namespace "com.photoeditorsdk.android.app"

compileSdkVersion 34
buildToolsVersion '34.0.0'

defaultConfig {
applicationId "com.photoeditorsdk.android.app"
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down
2 changes: 1 addition & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
#-renamesourcefileattribute SourceFile
7 changes: 4 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.photoeditorsdk.android.app">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
Expand All @@ -14,7 +13,9 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".KEditorDemoActivity"
<activity
android:exported="true"
android:name=".KEditorDemoActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
buildscript {
ext.kotlin_version = '1.6.21'
ext.ksp_version = '1.6.21-1.0.6'
ext.pesdk_version = '10.8.0' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
ext.pesdk_version = '10.8.1' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases
repositories {
google()
gradlePluginPortal()
maven { url 'https://artifactory.img.ly/artifactory/imgly' }
maven { url 'https://artifactory.img.ly/artifactory/imgly_development' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
Expand All @@ -27,6 +28,7 @@ allprojects {
google()
mavenCentral()
maven { url 'https://artifactory.img.ly/artifactory/imgly' }
maven { url 'https://artifactory.img.ly/artifactory/imgly_development' }
}
}

Expand Down
1 change: 0 additions & 1 deletion example_brush_presets_panel/.gitignore

This file was deleted.

80 changes: 0 additions & 80 deletions example_brush_presets_panel/build.gradle

This file was deleted.

21 changes: 0 additions & 21 deletions example_brush_presets_panel/proguard-rules.pro

This file was deleted.

26 changes: 0 additions & 26 deletions example_brush_presets_panel/src/main/AndroidManifest.xml

This file was deleted.

1 change: 0 additions & 1 deletion example_brush_presets_panel/src/main/assets/LICENSE

This file was deleted.

Binary file not shown.
Loading

0 comments on commit 0318181

Please sign in to comment.