androiddartflutter

Is there a way to know which Android API version is my flutter app using?


I need to know which Android API version is my Flutter app using, I need to change it too if that's like the 29 API to support Android 6.0 using API 26 I guess.


Solution

  • Open your android build.gradle (Module:app) and there you can see :

    minSdkVersion

    targetSdkVersion

    compileSdkVersion etc.