File tree Expand file tree Collapse file tree 8 files changed +18
-19
lines changed Expand file tree Collapse file tree 8 files changed +18
-19
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,6 @@ Set Banuba license token [within the app](App.js#L13).
42
42
| | Version |
43
43
| --------------| :-------:|
44
44
| Yarn | 4.1.1 |
45
- | React Native | 0.73.5 |
46
- | Android | 6 .0+ |
47
- | iOS | 14 .0+ |
45
+ | React Native | 0.79.1 |
46
+ | Android | 8 .0+ |
47
+ | iOS | 15 .0+ |
Original file line number Diff line number Diff line change @@ -152,8 +152,8 @@ dependencies {
152
152
implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
153
153
154
154
// Banuba Video Editor SDK dependencies
155
- def banubaSdkVersion = ' 1.41.0 '
156
- implementation " com.banuba.sdk:ffmpeg:5.2 .0"
155
+ def banubaSdkVersion = ' 1.42.2 '
156
+ implementation " com.banuba.sdk:ffmpeg:5.3 .0"
157
157
implementation " com.banuba.sdk:camera-sdk:${ banubaSdkVersion} "
158
158
implementation " com.banuba.sdk:camera-ui-sdk:${ banubaSdkVersion} "
159
159
implementation " com.banuba.sdk:core-sdk:${ banubaSdkVersion} "
@@ -172,6 +172,6 @@ dependencies {
172
172
// Photo Editor SDK dependency
173
173
// WARNING!
174
174
// Remove this dependency if you only use Video Editor SDK
175
- def banubaPESdkVersion = ' 1.2.9 '
175
+ def banubaPESdkVersion = ' 1.2.11 '
176
176
implementation " com.banuba.sdk:pe-sdk:${ banubaPESdkVersion} "
177
177
}
Original file line number Diff line number Diff line change 3
3
<style name =" Theme.IntegrationApp" parent =" Theme.MaterialComponents.DayNight.DarkActionBar" >
4
4
<item name =" colorPrimary" >@color/surfaceDark</item >
5
5
<item name =" colorOnPrimary" >@color/primaryBrandLight</item >
6
- <item name =" colorSecondary" >@color/primaryBrandDarkOpacity50</item >
7
6
<item name =" colorOnSecondary" >@color/primaryBrandLight</item >
8
7
<item name =" android:statusBarColor" >?attr/colorPrimary</item >
9
8
</style >
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ import org.apache.tools.ant.taskdefs.condition.Os
4
4
5
5
buildscript {
6
6
ext {
7
- ext. kotlin_version = ' 2.0.21 '
8
- buildToolsVersion = " 35.0.0 "
9
- minSdkVersion = 24
7
+ ext. kotlin_version = ' 2.1.0 '
8
+ buildToolsVersion = " 35.0.1 "
9
+ minSdkVersion = 26
10
10
compileSdkVersion = 35
11
- targetSdkVersion = 34
11
+ targetSdkVersion = 35
12
12
13
- ndkVersion = " 26.3.11579264 "
13
+ ndkVersion = " 27.2.12479018 "
14
14
}
15
15
repositories {
16
16
google()
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ target 'vesdkreactnativecliintegrationsample' do
28
28
:app_path => "#{ Pod ::Config . instance . installation_root } /.."
29
29
)
30
30
31
- sdk_version = '1.41.0 '
31
+ sdk_version = '1.42.1 '
32
32
33
33
pod 'BanubaVideoEditorSDK' , sdk_version
34
34
pod 'BanubaSDKSimple' , sdk_version
@@ -37,7 +37,7 @@ target 'vesdkreactnativecliintegrationsample' do
37
37
pod 'BanubaAudioBrowserSDK' , sdk_version # optional
38
38
39
39
# Photo Editor
40
- pod 'BanubaPhotoEditorSDK' , '1.2.5 '
40
+ pod 'BanubaPhotoEditorSDK' , '1.2.8 '
41
41
42
42
post_install do |installer |
43
43
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ allprojects {
44
44
45
45
Specify Photo Editor SDK dependencies in the app [ gradle] ( ../android/app/build.gradle#L165 ) file.
46
46
``` groovy
47
- def banubaPESdkVersion = '1.2.9 '
47
+ def banubaPESdkVersion = '1.2.11 '
48
48
implementation "com.banuba.sdk:pe-sdk:${banubaPESdkVersion}"
49
49
50
- def banubaSdkVersion = '1.40.0 '
50
+ def banubaSdkVersion = '1.42.2 '
51
51
implementation "com.banuba.sdk:core-sdk:${banubaSdkVersion}"
52
52
implementation "com.banuba.sdk:core-ui-sdk:${banubaSdkVersion}"
53
53
implementation "com.banuba.sdk:ve-gallery-sdk:${banubaSdkVersion}"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Once complete you will be able to launch photo editor in your React Native proje
8
8
9
9
## Installation
10
10
11
- Add iOS Photo Editor SDK dependency ``` pod 'BanubaPhotoEditorSDK', '1.2.5 ' ``` to your [ Podfile] ( ../ios/Podfile ) .
11
+ Add iOS Photo Editor SDK dependency ``` pod 'BanubaPhotoEditorSDK', '1.2.8 ' ``` to your [ Podfile] ( ../ios/Podfile ) .
12
12
13
13
## Launch
14
14
First, initialize the Photo Editor SDK using the license token in ``` SdkEditorModule ``` on iOS.
Original file line number Diff line number Diff line change @@ -72,8 +72,8 @@ android {
72
72
73
73
Specify a list of dependencies in [ gradle] ( ../android/app/build.gradle#L145 ) file.
74
74
``` groovy
75
- def banubaSdkVersion = '1.41.0 '
76
- implementation "com.banuba.sdk:ffmpeg:5.2 .0"
75
+ def banubaSdkVersion = '1.42.2 '
76
+ implementation "com.banuba.sdk:ffmpeg:5.3 .0"
77
77
implementation "com.banuba.sdk:camera-sdk:${banubaSdkVersion}"
78
78
implementation "com.banuba.sdk:camera-ui-sdk:${banubaSdkVersion}"
79
79
implementation "com.banuba.sdk:core-sdk:${banubaSdkVersion}"
You can’t perform that action at this time.
0 commit comments