|
1 |
| -## 1.0.0 |
| 1 | +## 1.4.0 |
2 | 2 |
|
3 |
| -* `intent` is your one stop solution for handling different Android Intents from Flutter app. |
| 3 | +* Updated `androidx.core` dependency to latest version |
| 4 | +* Added optional `type` param support for `Intent.putExtra(String extra, dynamic data, {String type})`` method |
| 5 | +* This change is backward compatible |
| 6 | +* Now you can specify which type this extra value to be casted into, in android platform code |
| 7 | +* If no type information provided uses default behaviour, where it simply gets casted to `String` |
| 8 | +* Supported extra data types are put inside `TypedExtra` class |
4 | 9 |
|
5 |
| -**Enjoy :)** |
| 10 | +## 1.3.4 |
6 | 11 |
|
7 |
| -## 1.1.0 |
| 12 | +* Activity identifier code updated in Kotlin, using 998 for handling both image & video capture Intent(s) |
| 13 | +* Image & video temp filename format changed, using locale date format ( i.e. ddmmyyyy_HHmmss.* ) |
| 14 | +* Updated activity call back handler section, returning result from `else` block of code ( prior to it, it was out of scope of `else` block ) |
8 | 15 |
|
9 |
| -* `intent` - your one stop solution for android activity, can now get you back result from launched activity |
10 |
| -* Can pick documents/ multimedia using their default activity, and get you back a `List<String>`, which holds result. |
11 |
| -* There might be some situation in which you want to pick multiple documents, which is why `Intent.startActivityForResult()` returns a `List<String>`. |
12 |
| -* Most important news, `intent` can capture image using default Camera Activity and get you back path to captured image. |
| 16 | +## 1.3.3 |
13 | 17 |
|
14 |
| -## 1.2.0 |
| 18 | +* Fixed sourceCompatibility & targetCompatibility issue, set to jdk1.8 |
| 19 | +* Fixed image & video capture failure issue |
15 | 20 |
|
16 |
| -* Prior to this release on a single device, > 1 app could not use `intent` package, due to name conflict issue, which has been resolved by pull request submitted by [agniswarm](https://github.com/agniswarm) |
17 |
| -* Added platform specificness in pubspec.yaml to denote usage of package only on android platform |
18 |
| -* Now serving `intent` on pub.dev using verified publisher |
| 21 | +## 1.3.2 |
| 22 | + |
| 23 | +* Removed cover photo from Github README.md |
| 24 | + |
| 25 | +## 1.3.1 |
| 26 | + |
| 27 | +* **Critical bug fix** - in previous release I made a big mistake by not considering `package` is a JAVA keyword, which needs to be escaped in Kotlin code |
| 28 | +* Added `setPackage` support for `startActivityForResult` method in Intent class |
| 29 | +* Updated Android SDK version, Kotlin version |
| 30 | +* Thanks for being so patient :) |
19 | 31 |
|
20 | 32 | ## 1.3.0
|
21 | 33 |
|
|
25 | 37 | * Usage can be found [here](https://github.com/itzmeanjan/intent#create-precomposed-email-)
|
26 | 38 | * Thanks for using `intent` :)
|
27 | 39 |
|
28 |
| -## 1.3.1 |
29 |
| - |
30 |
| -* **Critical bug fix** - in previous release I made a big mistake by not considering `package` is a JAVA keyword, which needs to be escaped in Kotlin code |
31 |
| -* Added `setPackage` support for `startActivityForResult` method in Intent class |
32 |
| -* Updated Android SDK version, Kotlin version |
33 |
| -* Thanks for being so patient :) |
| 40 | +## 1.2.0 |
34 | 41 |
|
35 |
| -## 1.3.2 |
| 42 | +* Prior to this release on a single device, > 1 app could not use `intent` package, due to name conflict issue, which has been resolved by pull request submitted by [agniswarm](https://github.com/agniswarm) |
| 43 | +* Added platform specificness in pubspec.yaml to denote usage of package only on android platform |
| 44 | +* Now serving `intent` on pub.dev using verified publisher |
36 | 45 |
|
37 |
| -* Removed cover photo from Github README.md |
| 46 | +## 1.1.0 |
38 | 47 |
|
39 |
| -## 1.3.3 |
| 48 | +* `intent` - your one stop solution for android activity, can now get you back result from launched activity |
| 49 | +* Can pick documents/ multimedia using their default activity, and get you back a `List<String>`, which holds result. |
| 50 | +* There might be some situation in which you want to pick multiple documents, which is why `Intent.startActivityForResult()` returns a `List<String>`. |
| 51 | +* Most important news, `intent` can capture image using default Camera Activity and get you back path to captured image. |
40 | 52 |
|
41 |
| -* Fixed sourceCompatibility & targetCompatibility issue, set to jdk1.8 |
42 |
| -* Fixed image & video capture failure issue |
| 53 | +## 1.0.0 |
43 | 54 |
|
44 |
| -## 1.3.4 |
| 55 | +* `intent` is your one stop solution for handling different Android Intents from Flutter app. |
45 | 56 |
|
46 |
| -* Activity identifier code updated in Kotlin, using 998 for handling both image & video capture Intent(s) |
47 |
| -* Image & video temp filename format changed, using locale date format ( i.e. ddmmyyyy_HHmmss.* ) |
48 |
| -* Updated activity call back handler section, returning result from `else` block of code ( prior to it, it was out of scope of `else` block ) |
| 57 | +**Enjoy :)** |
0 commit comments