Reputation: 115
I have developed an app on react native android and want to build same for the ios. While building the IOS app, I am facing the signing issue, It is asking for the Provisional profile. When I log in to my apple account, it is saying I was not enrolled in the developer program and for that, I have to pay the enrollment fee. My question is
Upvotes: 3
Views: 3635
Reputation: 409
According to Xcode documentation
All iOS, tvOS, and watchOS apps must be code signed using a provisioning profile to launch on a device. macOS apps that use certain app services must be signed to launch on your Mac too.
src: https://help.apple.com/xcode/mac/current/#/dev5a825a1ca
Which means you compulsorily need a provisioning profile for running anything on device and the only way you can create one is by registering for the Apple Developer Program. It is expensive no doubt but that's Apple for you.
Upvotes: 0