Update Mobile SDK
Update your mobile apps with the latest Orb Mobile SDK
When new features are added to the Orb Mobile SDK, you'll need to update your local version of the SDK. Here's how.
- In a terminal, navigate to the location of your Orb SDK.
- Run
git pull
to retrieve the latest code.
Android
- Navigate to the
module
folder and runflutter build aar
to build the various AAR packages and update the local Gradle repository. - Sync your
build.gradle
changes.
iOS
- Navigate to the
module
folder and runflutter pub get
to refresh the list of dependencies read bypodhelper.rb
. - Run
pod install
for your application. - Open your apps
.xcworkspace
file in Xcode and build usingCmd+B
.
Flutter
- Navigate to the
orb
folder and runflutter pub get
to update all dependencies
Updated about 2 years ago