diff --git a/android/fastlane/flutter_build.sh b/android/fastlane/flutter_build.sh index 3868104..8a685ac 100755 --- a/android/fastlane/flutter_build.sh +++ b/android/fastlane/flutter_build.sh @@ -12,8 +12,8 @@ fi if [ "$1" == "--apk" ] then echo "Building APK..." - flutter build apk --release + flutter build apk --release --no-tree-shake-icons else echo "Building AAB..." - flutter build appbundle --release + flutter build appbundle --release --no-tree-shake-icons fi \ No newline at end of file diff --git a/ios/fastlane/flutter_build.sh b/ios/fastlane/flutter_build.sh index bb9820b..13727b0 100755 --- a/ios/fastlane/flutter_build.sh +++ b/ios/fastlane/flutter_build.sh @@ -8,4 +8,4 @@ then else echo "Skipping clean..." fi -flutter build ios --release --no-codesign \ No newline at end of file +flutter build ios --release --no-codesign --no-tree-shake-icons \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index c6444e6..74e2eee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ description: A new Flutter project. # Both the version and the builder number may be overridden in flutter # build by specifying --build-name and --build-number, respectively. # Read more about versioning at semver.org. -version: 2.2.0+86 +version: 2.2.1+87 environment: sdk: ">=2.0.0-dev.68.0 <3.0.0"