| 
				
					
						 | 
			6 年之前 | |
|---|---|---|
| .. | ||
| android | 6 年之前 | |
| assets | 6 年之前 | |
| components | 6 年之前 | |
| ios | 6 年之前 | |
| .babelrc | 6 年之前 | |
| .buckconfig | 6 年之前 | |
| .flowconfig | 6 年之前 | |
| .gitattributes | 6 年之前 | |
| .gitignore | 6 年之前 | |
| .watchmanconfig | 6 年之前 | |
| App.js | 6 年之前 | |
| README.md | 6 年之前 | |
| README.zh.md | 6 年之前 | |
| app.json | 6 年之前 | |
| index.js | 6 年之前 | |
| package-lock.json | 6 年之前 | |
| package.json | 6 年之前 | |
| utils.js | 6 年之前 | |
| yarn.lock | 6 年之前 | |
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