Gathering detailed insights and metrics for @wedoproduct/react-native-videoeditorsdk
Gathering detailed insights and metrics for @wedoproduct/react-native-videoeditorsdk
Gathering detailed insights and metrics for @wedoproduct/react-native-videoeditorsdk
Gathering detailed insights and metrics for @wedoproduct/react-native-videoeditorsdk
React Native module for VideoEditor SDK
npm install @wedoproduct/react-native-videoeditorsdk
Typescript
Module System
TypeScript (50.17%)
Objective-C (26.24%)
Kotlin (14.74%)
JavaScript (7.4%)
Java (0.78%)
Ruby (0.63%)
C (0.03%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
156 Stars
44 Commits
32 Forks
10 Watchers
1 Branches
5 Contributors
Updated on Jun 20, 2025
Latest Version
2.10.1
Package Id
@wedoproduct/react-native-videoeditorsdk@2.10.1
Unpacked Size
374.21 kB
Size
113.03 kB
File Count
61
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
2
Check out our video tutorial for a step-by-step integration guide which also details advanced SDK features, such as serializing and reusing previously applied editing operations.
Install the React Native module in your project as follows:
1yarn add react-native-videoeditorsdk
In general, we highly recommend using React Native 0.60 or newer. If you cannot avoid using an older React Native version you need to link the native dependencies with:
1yarn react-native link
before you continue with the platform-specific guides below.
For React Native 0.60 and above autolinking is used and VideoEditor SDK for iOS should be automatically installed:
1cd ios && pod install && cd ..
and updated:
1cd ios && pod update && cd ..
with CocoaPods.
For older React Native versions autolinking is not available and VideoEditor SDK for iOS needs to be manually integrated in your Xcode project if you don't use CocoaPods to manage your dependencies. Make sure to put ImglyKit.framework
and VideoEditorSDK.framework
in the ios/
directory of your project.
Because VideoEditor SDK for Android is quite large, there is a high chance that you will need to enable Multidex for your project as follows:
android/app/build.gradle
file (not android/build.gradle
) and add these lines at the end:
1android { 2 defaultConfig { 3 multiDexEnabled true 4 } 5} 6dependencies { 7 implementation 'androidx.multidex:multidex:2.0.1' 8}
android/app/src/main/java/.../MainApplication.java
file and change the superclass of your MainApplication
class from Application
to androidx.multidex.MultiDexApplication
, e.g.:
1public class MainApplication extends androidx.multidex.MultiDexApplication implements ReactApplication {
Add the img.ly repository and plugin by opening the android/build.gradle
file (not android/app/build.gradle
) and adding these lines at the top:
1buildscript { 2 repositories { 3 jcenter() 4 maven { url "https://plugins.gradle.org/m2/" } 5 maven { url "https://artifactory.img.ly/artifactory/imgly" } 6 } 7 dependencies { 8 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10" 9 classpath 'ly.img.android.sdk:plugin:8.3.1' 10 } 11}
In order to update VideoEditor SDK for Android replace the version string 8.3.1
with a newer release.
Configure VideoEditor SDK for Android by opening the android/app/build.gradle
file (not android/build.gradle
) and adding the following lines under apply plugin: "com.android.application"
:
1apply plugin: 'ly.img.android.sdk' 2apply plugin: 'kotlin-android' 3 4// Comment out the modules you don't need, to save size. 5imglyConfig { 6 modules { 7 include 'ui:text' 8 include 'ui:focus' 9 include 'ui:frame' 10 include 'ui:brush' 11 include 'ui:filter' 12 include 'ui:sticker' 13 include 'ui:overlay' 14 include 'ui:transform' 15 include 'ui:adjustment' 16 include 'ui:text-design' 17 include 'ui:video-trim' 18 include 'ui:video-library' 19 include 'ui:video-composition' 20 include 'ui:audio-composition' 21 22 // This module is big, remove the serializer if you don't need that feature. 23 include 'backend:serializer' 24 25 // Remove the asset packs you don't need, these are also big in size. 26 include 'assets:font-basic' 27 include 'assets:frame-basic' 28 include 'assets:filter-basic' 29 include 'assets:overlay-basic' 30 include 'assets:sticker-shapes' 31 include 'assets:sticker-emoticons' 32 include 'assets:sticker-animated' 33 34 include 'backend:sticker-animated' 35 include 'backend:sticker-smart' 36 } 37}
Import the module in your App.js
:
1import {VESDK, VideoEditorModal, Configuration} from 'react-native-videoeditorsdk';
Each platform requires a separate license file. Unlock VideoEditor SDK automatically for both platforms with a single line of code via platform-specific file extensions:
1VESDK.unlockWithLicense(require('./vesdk_license'));
Open the editor with a video:
1VESDK.openEditor(require('./video.mp4'));
Or use the component to open the editor:
1<VideoEditorModal visible={true} video={require('./video.mp4')}/>
Please see the code documentation for more details and additional customization and configuration options.
For configuring and customizing VideoEditor SDK beyond these options exposed to JavaScript the iOS bridge provides an interface for native customization. Please refer to our documentation for more details on native customization.
Please see our example project which demonstrates how to use the React Native module for VideoEditor SDK.
Make sure you have a commercial license for VideoEditor SDK before releasing your app. A commercial license is required for any app or service that has any form of monetization: This includes free apps with in-app purchases or ad supported applications. Please contact us if you want to purchase the commercial license.
Use our service desk for bug reports or support requests. To request a commercial license, please use the license request form on our website.
No vulnerabilities found.
Reason
0 existing vulnerabilities detected
Reason
binaries present in source code
Details
Reason
license file detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More