Reputation: 517
I'm trying to run the command below but it says "Failed to create provisioning profile. There are no devices registered in your account on the developer website. Plug in and select a device to have Xcode register it."
flutter build ios
Does anyone knows if is possible to build the iOS files without a Apple Device registered?
*I've setted up a VirtualBox with [macOS Catalina 10.15.3] + [xCode] + [Android Studio] + [Flutter] in Windows
Upvotes: 10
Views: 13347
Reputation: 21
flutter build ios --release --no-codesign
. you will have Runner.app
in dir build/ios/archive/Runner.xcarchive/Product/Applications/
Payload
directory.Runner.app
to Payload
.zip -qq -r -9 filename.ipa Payload
Upvotes: 2
Reputation: 10463
It's possible to create an unsigned iOS .ipa without code signing.
Payload
- note that this is case sensitive.Payload
folder you've created.Payload
folder with
default .zip formatInstalling the .ipa file to an iOS device is a different topic, however.
Upvotes: 10