intent 1.3.3
intent: ^1.3.3 copied to clipboard
A simple to use Flutter plugin to deal with Android Intents - your one-stop-solution for Android Intents.
1.0.0 #
intentis your one stop solution for handling different Android Intents from Flutter app.
Enjoy :)
1.1.0 #
intent- your one stop solution for android activity, can now get you back result from launched activity- Can pick documents/ multimedia using their default activity, and get you back a
List<String>, which holds result. - There might be some situation in which you want to pick multiple documents, which is why
Intent.startActivityForResult()returns aList<String>. - Most important news,
intentcan capture image using default Camera Activity and get you back path to captured image.
1.2.0 #
- Prior to this release on a single device, > 1 app could not use
intentpackage, due to name conflict issue, which has been resolved by pull request submitted by agniswarm - Added platform specificness in pubspec.yaml to denote usage of package only on android platform
- Now serving
intenton pub.dev using verified publisher
1.3.0 #
- Intent class now lets you set specific package name for resolving intent
- Assuming that, requested package is present on system, otherwise it'll simply throw PlatformException
- Thanks to PR submitted by togiberlin :)
- Usage can be found here
- Thanks for using
intent:)
1.3.1 #
- Critical bug fix - in previous release I made a big mistake by not considering
packageis a JAVA keyword, which needs to be escaped in Kotlin code - Added
setPackagesupport forstartActivityForResultmethod in Intent class - Updated Android SDK version, Kotlin version
- Thanks for being so patient :)
1.3.2 #
- Removed cover photo from Github README.md
1.3.3 #
- Fixed sourceCompatibility & targetCompatibility issue, set to jdk1.8
- Fixed image & video capture failure issue