matrixbirds 985acee434 fix. samples | il y a 5 ans | |
---|---|---|
.. | ||
android | il y a 5 ans | |
assets | il y a 5 ans | |
components | il y a 5 ans | |
ios | il y a 5 ans | |
.babelrc | il y a 5 ans | |
.buckconfig | il y a 5 ans | |
.flowconfig | il y a 5 ans | |
.gitattributes | il y a 5 ans | |
.gitignore | il y a 5 ans | |
.watchmanconfig | il y a 5 ans | |
App.js | il y a 5 ans | |
README.md | il y a 5 ans | |
README.zh.md | il y a 5 ans | |
app.json | il y a 5 ans | |
babel.config.js | il y a 5 ans | |
index.js | il y a 5 ans | |
package.json | il y a 5 ans | |
utils.js | il y a 5 ans | |
yarn.lock | il y a 5 ans |
react-native-agora
More Android Setup details read the doc
adb reverse tcp:8081 tcp:8081
adb reverse tcp:8097 tcp:8097
npm install
npm run android
keytool -genkey -v -keystore my-release-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
signingConfigs {
release {
if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) {
storeFile file(MYAPP_RELEASE_STORE_FILE)
storePassword MYAPP_RELEASE_STORE_PASSWORD
keyAlias MYAPP_RELEASE_KEY_ALIAS
keyPassword MYAPP_RELEASE_KEY_PASSWORD
}
}
}
MYAPP_RELEASE_STORE_FILE=my-release-key.keystore # your keystore file name
MYAPP_RELEASE_KEY_ALIAS=my-key-alias # key alias
MYAPP_RELEASE_STORE_PASSWORD=****** # password
MYAPP_RELEASE_KEY_PASSWORD=****** # password confirm
npm run build-android
react-native-agora
More iOS Setup details read the doc
npm install
npm run ios