Reputation: 31
Launching lib/main.dart on iPhone in debug mode... Signing iOS app for device deployment using developer identity: "Apple Development: [email protected] (APHJCKJCD5)" Xcode build done. 4.8s Failed to build iOS app Error output from Xcode build: ↳ Exited (sigterm) Could not build the precompiled application for the device.
It appears that your application still contains the default signing identifier. Try replacing 'com.example' with your signing id in Xcode: open ios/Runner.xcworkspace
Error launching application on iPhone.
Upvotes: 3
Views: 1974
Reputation: 1189
It seems that for me the flutter_svg package was causing the issue.
Bumping its version to flutter_svg: ^0.18.0
solved the issue.
Upvotes: 1