- [Android] added
requestPermissionmethod to theAndroidFlutterLocalNotificationsPluginclass. This make use of the new feature added to Android 13 where an app can request permissions to show notifications. As the plugin's APIs don't have breaking changes, this is released a minor release. It does however, require the Android 13 SDK to be install installed and for apps to change thecompileSdkVersionin their app'sbuild.gradleto 33 as the plugin'scompileSdkVersionis now 33. Only apps targeting Android 13 can request the permission as well. The latter can be done by updating thetargetSdkVersionin an app'sbuild.gradlefile to33. Thanks to the PR from Bartek Pacia. Note: the ability to request the permission as part of callinginitializewill be added later on