Upgrade
Upgrade Link SDKs regularly to receive new features and improved performance.
Argyle periodically releases updates to its SDK's. These updates can include new functionalities, bug fixes, and security updates. For each new Link release, we recommend upgrading your SDK installation as soon as possible.
- To stay notified about new Link releases, subscribe to our Changelog. All Link SDK versions are also made available or will soon be made available on our public Github repository.
- For first time integrations, visit our Initialization page.
Web#
Link for Web updates automatically with each release. You do not need to take any steps to upgrade your Web integration.
1<script src="https://plugin.argyle.com/argyle.web.v5.js"></script>
iOS#
Requirements — iOS 14.0+, Xcode 14.0+, Swift 5.5+
- To verify your current iOS SDK version, check the
Podfile.lock
file of your Xcode project. - Before upgrading, review our iOS SDK release notes on Github for changes and information on each release.
- To avoid issues and crashes, upgrade your SDK to the latest version before you compile your app.
Previously installed using:
- Run
pod outdated
to see if a newer version of the iOS SDK is available, or refer to our iOS SDK release notes on Github. - If a newer version is available, update your
Podfile
to the new version. See specifying pod versions for more information. - Run
pod update
to install the new version. - Make any necessary changes relevant to the new version, as specified in the iOS SDK release notes.
- Clean and rebuild your project by selecting Product > Clean and then Product > Build.
Android#
Requirements — Android 8.0 (minSdk/API level 26) and above, compileSdk 34 and above
- Before upgrading, review our Android SDK release notes on Github for changes and information on each release.
-
Update the version number within the dependencies of your
build.gradle
configuration file:1dependencies { 2 implementation 'com.argyle:argyle-link-android:5.x.x' 3}
-
Sync your Android project to import the build configuration changes and update to the latest Android SDK version.
React Native#
React Native Requirements — React Native version 0.73.0 or higher
iOS Requirements — iOS 14.0+, Xcode 14.0+, Swift 5.5+
Android Requirements — Android 8.0 (minSdk/API level 26) and above, compileSdk 34 and above
- Before upgrading, review our React Native SDK release notes on Github for changes and information on each release.
Previously installed using:
- Update
package.json
with the newer React Native SDK version. - Run
npm install
to update the SDK with the new version. - Run
cd ios
to navigate to theios
folder. - Run
pod update
to update the SDK with the new version. - Make any necessary changes relevant to the new version, as specified in the React Native SDK release notes.
Flutter#
iOS Requirements — iOS 14.0+, Xcode 14.0+, Swift 5.5+
Android Requirements — Android 8.0 (minSdk/API level 26) and above, compileSdk 34 and above
- Before upgrading, review our Flutter SDK release notes on Github for changes and information on each release.
Update the version number within the dependencies of your pubspec.yaml
file:
1dependencies: 2 argyle_link_flutter: ^1.x.x