Updating the SDK for Flutter
To update the Instabug Flutter SDK, you need to modify the version number in the pubspec.yaml
file to reflect the latest SDK version. In the example below, we will upgrade from version 13.4.0
to 14.0.0
:
Before
instabug_flutter: ^13.2.0
After
instabug_flutter: ^14.0.0
Once you've made this change, run the following command:
flutter pub get
Updated 2 days ago