| 
				
					
						 | 
			il y a 6 ans | |
|---|---|---|
| .. | ||
| android | il y a 6 ans | |
| assets | il y a 6 ans | |
| components | il y a 6 ans | |
| ios | il y a 6 ans | |
| .babelrc | il y a 6 ans | |
| .buckconfig | il y a 6 ans | |
| .flowconfig | il y a 6 ans | |
| .gitattributes | il y a 6 ans | |
| .gitignore | il y a 6 ans | |
| .watchmanconfig | il y a 6 ans | |
| App.js | il y a 6 ans | |
| README.md | il y a 6 ans | |
| README.zh.md | il y a 6 ans | |
| app.json | il y a 6 ans | |
| babel.config.js | il y a 6 ans | |
| index.js | il y a 6 ans | |
| package-lock.json | il y a 6 ans | |
| package.json | il y a 6 ans | |
| utils.js | il y a 6 ans | |
| yarn.lock | il y a 6 ans | |
react-native-agoraMore 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-agoraMore iOS Setup details read the doc
  npm install
  npm run ios