Over The Air (OTA) iOS IPA File Distribution For Public? [closed]

Well, you’re talking about OTA (over-the-air) ADHOC or ENTERPRISE distribution. I’ve been doing that for years for my beta testers. You don’t require any Enterprise Program to do that although now with Xcode 6 is a bit harder to do because after you archive your project for distribution, the ADHOC distribution doesn’t create the necessary … Read more

How to get .apk and .ipa file from flutter?

For apk (Android) you need to run the command : flutter build apk –release If you want to split the apks per abi (Split Apk) then run flutter build apk –target-platform android-arm,android-arm64,android-x64 –split-per-abi For ipa (iOS) you need to run the command : flutter build ios –release From the console P.S. –release is optional as … Read more