Search code examples
androidflutterandroid-manifestflutter2.0

Can't find Android Manifest in flutter project


Where do I find the android manifest file in Flutter 2.2, it's not under its typical location Not here


Solution

  • android manifest is located in your projects android/app/src/main/,

    if it is not there then just simply run flutter create . in your project root directory,

    this will create it,