skip to Main Content

How we build apk of web view app in a flutter. Does anyone help me, please?

2

Answers


  1. For build an APK you use:

    flutter build apk .
    

    For build a bundle:

    flutter build appbundle
    

    For build apk and split by arch

    flutter build apk --split-per-abi
    

    These is the modes that can you build for Android in flutter.

    The webView is a feature of your application, so don’t have a different type of build .

    Check this doc:
    https://docs.flutter.dev/deployment/android

    Login or Signup to reply.
  2. flutter build apk
    

    This typically build for debug mode. For more specific result, use ~

    flutter build apk --release 
    

    or,

    flutter build apk --debug
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search