Provisioning profile "iOS Team Provisioning Profile: doesn't include the currently selected device" Flutter - MacOS

Viewed 6330

I'm able to build the macOS app from Xcode and run successfully, but when I'm trying to run it from Android Studio it's giving me the following error:

Provisioning profile "mac Team Provisioning Profile: doesn't include the currently selected device"

If I go to my apple developer account I can see my device UUID there as well.

4 Answers

If you're on Mac M1, your device will have two UUIDs: one when Xcode / xcodebuild is running natively, the other when running under Rosetta.

To register your device ID under Rosetta:

  1. Applications folder > Xcode > right-click > Get Info > check "Open using Rosetta"
  2. Open app in Xcode
  3. Runner > Runner > Signing & Capabilities > ensure "Automatically manage signing" is checked
  4. Xcode will give you an error about the device ID not being in the provisioning profile > click the fix button
  5. Repeat steps 3. & 4. for any extensions you might have

Xcode will add the device ID to your profile. You can now uncheck "Open using Rosetta" to have Xcode running natively again.

See also this github issue.

You can try running the project via xcode first then running it via flutter SDK. This solved the mentioned issue for me.

That has been solved by:

  1. Deleting the provisioning profiles from the following path:

~/Library/MobileDevice/Provisioning/Profiles/

  1. Flutter clean

  2. Run again

EDIT

You might need to open the project from Xcode and build it from there, and don't forget the pod install command

Worked for me : Delete macos folder inside your flutter project , and then run this command :

flutter create .

it creates a new macos folder for you and you can run your project now

Related