Joney Spark
Results
2
comments of
Joney Spark
`/your_project/android/local.properties` file add `flutter.compileSdkVersion=33` this line and `/your_project/android/app/build.gradle` for this file update with below code ``` android { // compileSdkVersion flutter.compileSdkVersion compileSdkVersion localProperties.getProperty('flutter.compileSdkVersion').toInteger() } ``` update your compileSdkVersion and comment...
> please watch this video https://youtu.be/itluFkwTUwY @ptsdeen2007 always better to avoid hard code. Use `local.properties` variable. it's flutter recommended. Thanks