Gagandeep Singh
Gagandeep Singh

Reputation: 115

React Native IOS app build without Enrolling for Developer Program

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

  1. Is it compulsory to enroll in the Apple Developer program to build and share the app with my friends. It will cost me around $100
  2. Is there any way I can build the app without enrolling to developer program

Upvotes: 3

Views: 3635

Answers (1)

Prasad Parab
Prasad Parab

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

Related Questions