You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+15
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,18 @@
1
+
## [2.5.0]
2
+
3
+
### Added
4
+
5
+
*[imgly_sdk] Added `ThemeOptions` which enable customizing the UI color scheme with existing or custom runtime `Theme`s on iOS and existing or custom compiletime XML themes on Android.
6
+
*[imgly_sdk] Added `Configuration.toolbarMode` which enables repositioning the toolbar to the top/bottom of the editor on iOS.
7
+
*[video_editor_sdk] Added implementation and documentation for GIPHY sticker integration.
8
+
9
+
### Fixed
10
+
11
+
* Fixed enabling serialization would potentially crash the export on Android.
12
+
*[imgly_sdk] Fixed error when running on Android with Flutter 3.
13
+
*[photo_editor_sdk] Fixed error when opening the editor without an image but with a serialization with an embedded image.
14
+
*[video_editor_sdk] Fixed height and width of specified composition size would be flipped on Android.
Copy file name to clipboardexpand all lines: README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Add the plugin package to the `pubspec.yaml` file in your project:
23
23
24
24
```yaml
25
25
dependencies:
26
-
video_editor_sdk: ^2.4.0
26
+
video_editor_sdk: ^2.5.0
27
27
```
28
28
29
29
Install the new dependency:
@@ -34,7 +34,7 @@ flutter pub get
34
34
35
35
### Known Issues
36
36
37
-
With version `2.4.0`, we recommend using `compileSdkVersion` not lower than `31.0.0` for Android. However, this might interfere with your application's Android Gradle Plugin version if this is set to `4.x`.
37
+
With version `2.4.0`, we recommend using `compileSdkVersion` not lower than `31` for Android. However, this might interfere with your application's Android Gradle Plugin version if this is set to `4.x`.
38
38
39
39
If you don't use a newer Android Gradle Plugin version you'll most likely encounter a build error similar to:
40
40
```
@@ -95,12 +95,12 @@ Run with --stacktrace option to get the stack trace. Run with --info or --debug
95
95
}
96
96
dependencies {
97
97
...
98
-
+ classpath 'ly.img.android.sdk:plugin:10.0.1'
98
+
+ classpath 'ly.img.android.sdk:plugin:10.1.1'
99
99
...
100
100
}
101
101
}
102
102
```
103
-
In order to update VideoEditor SDK for Android replace the version string `10.0.1` with a [newer release](https://github.com/imgly/pesdk-android-demo/releases).
103
+
In order to update VideoEditor SDK for Android replace the version string `10.1.1` with a [newer release](https://github.com/imgly/pesdk-android-demo/releases).
104
104
105
105
2. Still in the `android/build.gradle` file (**not**`android/app/build.gradle`), add these lines at the bottom:
106
106
@@ -171,6 +171,7 @@ Run with --stacktrace option to get the stack trace. Run with --info or --debug
171
171
include 'ui:video-library'
172
172
include 'ui:video-composition'
173
173
include 'ui:audio-composition'
174
+
include 'ui:giphy-sticker'
174
175
175
176
// This module is big, remove the serializer if you don't need that feature.
0 commit comments