From f6753daf70e51adc4a752b066eb68c81dc16fbc5 Mon Sep 17 00:00:00 2001 From: harshit saini Date: Sat, 6 Sep 2025 11:43:55 +0530 Subject: [PATCH] docs: fix completeSdkVersion typo to compileSdkVersion Fix incorrect Android SDK parameter name in documentation. "completeSdkVersion" is not a valid Android parameter. The correct name is "compileSdkVersion". This prevents developer confusion when following the troubleshooting guide. --- permission_handler/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/permission_handler/README.md b/permission_handler/README.md index 836bd133..70c8a041 100644 --- a/permission_handler/README.md +++ b/permission_handler/README.md @@ -294,7 +294,7 @@ Starting with Android 10, apps are required to first obtain permission to read t ### onRequestPermissionsResult is called without results. What can I do? -It is probably caused by a difference between completeSdkVersion and targetSdkVersion. It can be depending on the flutter version that you use. `targetSdkVersion = flutter.targetSdkVersion` in the app/build.gradle indicates that the targetSdkVersion is flutter version dependant. For more information: [issue 1222](https://github.com/Baseflow/flutter-permission-handler/issues/1222) +It is probably caused by a difference between compileSdkVersion and targetSdkVersion. It can be depending on the flutter version that you use. `targetSdkVersion = flutter.targetSdkVersion` in the app/build.gradle indicates that the targetSdkVersion is flutter version dependant. For more information: [issue 1222](https://github.com/Baseflow/flutter-permission-handler/issues/1222) ### Checking or requesting a permission terminates the application on iOS. What can I do?