kineapps / flutter_archive

Flutter plugin for creating and extracting ZIP files.
https://pub.dev/packages/flutter_archive
BSD 3-Clause "New" or "Revised" License
59 stars 44 forks source link

Lower min ios version to 9.0 #22

Closed PiN73 closed 3 years ago

PiN73 commented 3 years ago

Current version isn't compatible with apps supports iOS 9.

If ios/Podifle contains platform :ios, '9.0', the app can't be compiled:

ios % pod install
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "flutter_archive":
  In Podfile:
    flutter_archive (from `.symlinks/plugins/flutter_archive/ios`)

Specs satisfying the `flutter_archive (from `.symlinks/plugins/flutter_archive/ios`)` dependency were found, but they required a higher minimum deployment target.

However the plugin doesn't require iOS 10 so min version can be lowered

kinex commented 3 years ago

Thanks for the PR!