Skip to content

Commit

Permalink
Merge pull request #20 from slightfoot/main
Browse files Browse the repository at this point in the history
Add support for Flutter 2.13.0 (Beta channel)
  • Loading branch information
Zfinix authored Apr 19, 2022
2 parents ca1515f + 836834c commit 3925c41
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.0.5-beta.2.13.0
* Add support for Flutter 2.13.0 (Beta channel)

## 2.0.4
* Merged PRs to add 5G functionality & fix permission issue

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class CarrierInfoPlugin: FlutterPlugin,
handler = null
}

override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<out String>?, grantResults: IntArray?): Boolean {
handler?.onRequestPermissionsResult(requestCode,permissions, grantResults)
override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<out String>, grantResults: IntArray): Boolean {
handler?.onRequestPermissionsResult(requestCode, permissions, grantResults)
return true
}
}
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: carrier_info
description: Carrier Info gets networkType, networkGeneration, mobileCountryCode, mobileCountryCode, e.t.c from both android and ios devices
version: 2.0.4
version: 2.0.5-beta.2.13.0
homepage: https://github.com/Zfinix/carrier_info

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.20.0"
flutter: ">=2.13.0-0.0"

dependencies:
flutter:
Expand Down

0 comments on commit 3925c41

Please sign in to comment.