- Update
compileSdkVersion
to 28. (thanks @miguelpruivo!)
- iOS user-agent database update. Specifically the iPhone XS, XR and 11 variants (thanks @pravinarr!)
-
iOS deprecation API change.
ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs . See https://developer.apple.com/documentation/uikit/uiwebview for more information.
-
iOS API change for compatibility purposes.
Change
UIWebView
(deprecated since iOS 12.0) toWKWebView
- #1 (courtesy of @Triipaxx!)
- API changes:
- Make
FlutterUserAgent.init
cache user-agent properties by default, unlessforce: true
is specified. - Add
FlutterUserAgent.getPropertyAsync
function for lazily fetching properties without having to callFlutterUserAgent.init
. - Add
FlutterUserAgent.release
function for releasing all the user-agent properties temporarily statically stored in memory.
- Make
- Add flutter example to the project.
- Initial release.