1

I have looked at this link: How to build signed apk from Android Studio for Flutter

It does not help because I can't find the Open Android Module in Android Studio but I remember generating a signed app bundle a couple months ago through command line. Also is there a reason for that option not coming in my Android Studio?

Shlok Jain
  • 343
  • 8
  • 17

1 Answers1

0

Step one: Check your gradle version if its 6.0 and above in android/gradle/gradle wrapper properties hit save.

distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip

Step two: cd to android

Step 3:type gradlew SigningReport

Step four:type flutter build apk --target-platform android-arm,android-arm64,android-x64 -- split-per-abi

Clinton
  • 435
  • 1
  • 4
  • 13