必要修改
react-native init 後,其實未真正完全初始化Project,
以下是一些近乎每個Project都必要修改的設定:
iOS
修改iOS Project裡的info.plist
Privacy - Camera Usage Description (類型String)
This app requires access to the camera.(可自訂)
存取相機需添加這項
Privacy - Photo Library Usage Description(類型String)
This app requires access to the photo library.(可自訂)
存取相片需添加這項
Privacy - Microphone Usage Description(類型String)
This app does not require access to the microphone.(可自訂)
使用Microphone需添加這項
NSAppTransportSecurity下添加Allow Arbitrary Loads(類型Boolean)值設為YES
不然只能使用https,不能連上http
Android
添加minifyEnabled true
android {
...
buildTypes {
release {
...
minifyEnabled true
}
}
}