Reputation: 2153
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
Reputation: 2153
This is really simple.
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.
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