I am new to flutter programming and I\'ve created a demo app, its running fine on both android and iOS devices. I want to see .apk and .ipa file in flutter. Can anyone help
Building .apk
Although app bundles are preferred over APKs, there are stores that don’t yet support app bundles. In this case, build a release APK for each target ABI (Application Binary Interface).
From the command line:
Run flutter build apk --split-per-abi
(The flutter build command defaults to --release.)
Building .ipa
To create a .ipa file, Build and release an iOS app
Register your app on App Store Connect
Review Xcode project settings, see the Xcode project settings
Create a build archive
In Xcode, configure the app version and build:
In Xcode, open Runner.xcworkspace in your app’s ios folder.
Select Product > Scheme > Runner.
Select Product > Destination > Generic iOS Device.
Select Product > Archive. (This process will take a little longer)
After finishing the process - Click the "Distribute App" button on right panel
Then follow the below steps
Step 1
Step 2
Step 3
Step 4
Step 5
Step 6 (Finally select the place you want to save the .ipa file )