Skip to content

Commit 0318181

Browse files
svendvdSven Nähler
authored andcommitted
Release 10.8.1 changes
1 parent 45272ae commit 0318181

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+25
-929
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: Gradle Wrapper Validation
1717
uses: gradle/wrapper-validation-action@v1
1818

19-
- name: Set up JDK 11
19+
- name: Set up JDK 17
2020
uses: actions/setup-java@v2
2121
with:
22-
java-version: '11'
22+
java-version: '17'
2323
distribution: 'adopt'
2424

2525
- name: Assemble

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# PhotoEditor SDK - Changelog
2-
## v10.8.0
2+
## v10.8.1
33

44
### Fixed
5+
* [VideoEditorSDK] Video export was limited by the frame rate limiter.
56
* [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.
67
* [VideoEditorSDK] `ArithmeticException` in `VideoCompositionSettings` when source is changed.
78
* [PhotoEditorSDK] Exporting images on the Pixel 8 (Pro) and maybe other devices, result in an endless export spinner.
@@ -15,6 +16,7 @@
1516
* ConfigLoader (React Native, Cordova/Ionic)
1617
* `personalVideoClips` is not disabled correctly if the video library is not used.
1718
* Kotlin 1.9.0+ compatibility issues, by using KSP.
19+
* Change
1820

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

28+
## ~~v10.8.0~~ (Broken release, don't use it!)
29+
* This version was recalled due to an error
30+
2631
## v10.7.3
2732

2833
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ buildscript {
119119
maven { url "https://artifactory.img.ly/artifactory/imgly" }
120120
}
121121
dependencies {
122-
classpath 'ly.img.android.pesdk:plugin:10.8.0'
122+
classpath 'ly.img.android.pesdk:plugin:10.8.1'
123123
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.6.21-1.0.6")
124124
}
125125
}

app/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,15 @@ imglyConfig {
4444
}
4545

4646
android {
47-
compileSdkVersion 31
48-
buildToolsVersion '30.0.3'
47+
namespace "com.photoeditorsdk.android.app"
48+
49+
compileSdkVersion 34
50+
buildToolsVersion '34.0.0'
4951

5052
defaultConfig {
5153
applicationId "com.photoeditorsdk.android.app"
5254
minSdkVersion 21
53-
targetSdkVersion 30
55+
targetSdkVersion 34
5456
versionCode 1
5557
versionName "1.0"
5658
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'

app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
# If you keep the line number information, uncomment this to
2020
# hide the original source file name.
21-
#-renamesourcefileattribute SourceFile
21+
#-renamesourcefileattribute SourceFile

app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.photoeditorsdk.android.app">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
65
<uses-permission android:name="android.permission.INTERNET"/>
@@ -14,7 +13,9 @@
1413
android:roundIcon="@mipmap/ic_launcher_round"
1514
android:supportsRtl="true"
1615
android:theme="@style/AppTheme">
17-
<activity android:name=".KEditorDemoActivity"
16+
<activity
17+
android:exported="true"
18+
android:name=".KEditorDemoActivity"
1819
android:label="@string/app_name">
1920
<intent-filter>
2021
<action android:name="android.intent.action.MAIN"/>

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
buildscript {
44
ext.kotlin_version = '1.6.21'
55
ext.ksp_version = '1.6.21-1.0.6'
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
6+
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
77
repositories {
88
google()
99
gradlePluginPortal()
1010
maven { url 'https://artifactory.img.ly/artifactory/imgly' }
11+
maven { url 'https://artifactory.img.ly/artifactory/imgly_development' }
1112
}
1213
dependencies {
1314
classpath 'com.android.tools.build:gradle:8.1.2'
@@ -27,6 +28,7 @@ allprojects {
2728
google()
2829
mavenCentral()
2930
maven { url 'https://artifactory.img.ly/artifactory/imgly' }
31+
maven { url 'https://artifactory.img.ly/artifactory/imgly_development' }
3032
}
3133
}
3234

example_brush_presets_panel/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

example_brush_presets_panel/build.gradle

Lines changed: 0 additions & 80 deletions
This file was deleted.

example_brush_presets_panel/proguard-rules.pro

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)