skip to Main Content

cloning project from GitHub fails and gives this error. I tried modifying things in AndroidManifest.xml and in java and nothing helps. please I’m been struggling with this for couple of days now so please help

2

Answers


  1. In my android/app/src/main/AndroidManifest.xml I changed android:name="io.flutter.app.FlutterApplication" to android:name="${applicationName}"

    The question was answered here: AndroidManifest.xml uses `android:name="io.flutter.app.FutterApplication"`

    Login or Signup to reply.
  2. The easy way to run a old project is

    1. remove android folder
    2. flutter create . . it will create all dependent folder by default according to compatible settings
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search