Upgrading the UXCam SDK
This is a small guide that will help you keeping the UXCam SDK up to date.
iOS
Cocoapods
- Run
pod update
in the project directory to update the dependency.
If you don't have Cocoapods integrated, you will need to manually update the new SDK.
Android
- Navigate to your app > build.gradle (Where the UXCam dependency is located)
- Change the version of the UXCam dependency (For this example is version 3.4.1)
dependencies {
implementation 'com.uxcam:uxcam:[email protected]'
}
React Native
Npm
- Check if there are any updates for dependencies that are in your
package.json
by running:
npx npm-check-updates -u
- Run the following:
npm install
Yarn
- You can upgrade the UXCam dependency to the latest major version with the following:
yarn upgrade react-native-ux-cam --latest
Cordova
- First run
npm outdated
to check for updates automatically. - Then first remove and re-install the plugin:
cordova plugin remove cordova-uxcam
cordova plugin add cordova-uxcam
- Run
npm outdated
again to check if this worked.
Nativescript
- Run the following:
tns plugin update nativescript-uxcam
Flutter
- Run the following:
flutter pub upgrade
Xamarin
- Make sure you have downloaded the latest Xamarin UXCam Component.
- You can download it in here.
Unity
- Visit our Github Repository and follow the steps for the integration guide.
Updated about 1 month ago