Luong Truong
Luong Truong

Reputation: 2153

react-native - Deploying to an iOS without an Apple Developer Account

I am running React Native app and struggling with deploying my react native app to iOS devices. I always have the issue:

Code signing is required for product type 'App Extension' in SDK 'iOS 11.4'

I signed to my app by following this instruction but it fail again.

Upvotes: 3

Views: 2774

Answers (1)

Luong Truong
Luong Truong

Reputation: 2153

This is really simple.

  1. Make sure your Xcode support the iOS version of your phone. In my case, Xcode 9.4 and iOS version is 11.4. If your phone is 11.3, you can choose the version inside Deployment Target in Xcode.

  2. React native contains 2 projects: main and test. MAKE SURE both of them is signed with develop team and have correct iOS build version.

That solved my problem.

Upvotes: 1

Related Questions