Flutter Package Upgrade Guide¶
Please change the pubspec.yaml to refer to the latest Flutter package.
dependencies:
flutter:
sdk: flutter
...
repro_flutter: ^3.18.2
Run the following command.
$ flutter pub get
or
$ flutter pub upgrade
You will also need to update the Android SDK and iOS SDK as follows.
Android¶
Please change the app/build.gradle as follows
dependencies {
...
implementation 'io.repro:repro-android-sdk:5.20.9'
...
}
iOS¶
Run the following command in the root directory of your project.
$ cd ios
$ pod update Repro