Upgrading the UXCam SDK
This is a small guide that will help you keeping the UXCam SDK up to date.
SDK Updates
To check all the information on the fixes and improvements on the latest versions of the SDK, please visit this page.
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.6.32)
dependencies {
implementation 'com.uxcam:uxcam:3.6.32'
}
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.
Updated 7 days ago