skip to Main Content

if i try to do flutter build ipa i got the error:

Automatically signing iOS for device deployment using specified development team in Xcode project: 2TPRUM2A9L
Running Xcode build...
Xcode archive done.                                          3,3s
Failed to build iOS app
Error output from Xcode build:
↳
    objc[10019]: Class AMSupportURLConnectionDelegate is implemented in both /usr/lib/libauthinstall.dylib (0x203eb2b90) and
    /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1084e42c8). One of the two
    will be used. Which one is undefined.
    objc[10019]: Class AMSupportURLSession is implemented in both /usr/lib/libauthinstall.dylib (0x203eb2be0) and
    /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1084e4318). One of the two
    will be used. Which one is undefined.
    ** ARCHIVE FAILED **


Xcode's output:
↳
    note: Using new build system
    note: Planning
    note: Build preparation complete
    note: Building targets in dependency order
    error: No profiles for 'com.fahrschuleplaner24' were found: Xcode couldn't find any iOS App Development provisioning
    profiles matching 'com.fahrschuleplaner24'. Automatic signing is disabled and unable to generate a profile. To enable
    automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'Runner' from project 'Runner')

in xcode on signing & capabilities

enter image description here

No profiles for ‘com.fahrschuleplaner24’ were found

enter image description here

im the owner of the account and also i have this profile there but still it wont work

please help me to solve it

2

Answers


  1. Chosen as BEST ANSWER

    had to run it on a real iphone, after that it worked


  2. Can you try this once. first clear DerivedData for xcode and then try following commands

    1. flutter clean
    2. flutter pub get
    3. cd ios
    4. pod install
    5. pod update

    now after this open with xcode and check

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search