I have a React Native app which was generated using the React Native CLI. The generated app shows a bundle id with value org.reactjs.native.example.FoodieRN
. Of course this bundle id does not yet exist in my Apple Developer account. In fact, I don't even have permissions to create a bundle id in my account.
However I should be able to create an iOS Development Profile for this app using a wildcard bundle id. How can I do this using Fastlane Match? The following command seems to require a real bundle id:
fastlane match development
If I give it a wildcard bundle id (*), it fails:
Couldn't find bundle identifier '*' for the user <Apple Id>
Is there another way?