Flutter Package Upgrade Guide¶
Please change the pubspec.yaml
to refer to the latest Flutter package.
dependencies:
flutter:
sdk: flutter
...
repro_flutter: ^3.16.1
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.0'
...
}