👋 Hey iOS/mobile developer,
When you upload a new build to the App Store, you always have to wait for the processing and when the processing is done, you have to manually validate the compliance encryption which is… a waste of time (😒).
The easiest solution is to just add a new key in your Info.plist file to say your app is not using any encryption at all. This new (magic 🎩) key is ITSAppUsesNonExemptEncryption and the value is false.
This article groups all awesome (🔥) resources I found on the web while creating my first projects using the React-Native mobile dev framework.
My setup:
react-native init ProjectName
cd ProjectName
react-native run-ios
Here if you get the simulator which is loading, you are on the good path (for the moment).
git clone https://github.com/joeybronner/rn-starter-kit
npm install
react-native link
react-native run-ios
One of the most important plugin in a @reactnative project is the navigation between screens. I highly recommend to get the react-navigation plugin.
npm install —-save react-navigation
npm install —-save react-native-gesture-handler
react-native link…