Baseflow / flutter-permission-plugins

This repo contains a collection of permission related Flutter plugins which can be used to request permissions to access device resources in a cross-platform way.
https://baseflow.com
MIT License
52 stars 34 forks source link

Mismatch in compileSdkVersion in Readme. #19

Closed ThinkDigitalSoftware closed 4 years ago

ThinkDigitalSoftware commented 4 years ago

Make sure you set the compileSdkVersion in your "android/app/build.gradle" file to 28:

android {
 compileSdkVersion 29

 ...
}
mvanbeusekom commented 4 years ago

@ThinkDigitalSoftware thank you very much for pointing this out. We have updated the "README.md" file to:

" Make sure you set the compileSdkVersion in your "android/app/build.gradle" file to 28 or higher:

android {
 compileSdkVersion 28

 ...
}

"