skip to Main Content

While developing iOS applications with flutter, I install the app on an iPhone by connecting to it via USB and running the project in profile mode. Installing the app by this way is inconvenient and impossible when the testing team is not present at the same location as the developer.

I share the android build as an .apk file. Is there a similar way to share the ios app over the internet?

2

Answers


  1. If you are using macOS and you want to build your app, use:

    flutter build ios –release

    You will find the app in your project’s build/ios/iphoneos/Runner.app

    Login or Signup to reply.
  2. I followed this one, and it worked.
    Similar Question

    • Upload your .ipa to https://www.diawi.com, It will give you a
      download link. In this approach, you have to add the devices UDI to
      your developer account devices
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search