| 
				
					
						 | 
			hace 6 años | |
|---|---|---|
| .. | ||
| android | hace 6 años | |
| assets | hace 6 años | |
| components | hace 6 años | |
| ios | hace 6 años | |
| .babelrc | hace 6 años | |
| .buckconfig | hace 6 años | |
| .flowconfig | hace 6 años | |
| .gitattributes | hace 6 años | |
| .gitignore | hace 6 años | |
| .watchmanconfig | hace 6 años | |
| App.js | hace 6 años | |
| README.md | hace 6 años | |
| README.zh.md | hace 6 años | |
| app.json | hace 6 años | |
| babel.config.js | hace 6 años | |
| index.js | hace 6 años | |
| package-lock.json | hace 6 años | |
| package.json | hace 6 años | |
| utils.js | hace 6 años | |
| yarn.lock | hace 6 años | |
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