├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── .watchmanconfig ├── App.js ├── LICENSE.md ├── README.md ├── README.zh.md ├── __tests__ └── App.js ├── android ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ └── runConfigurations.xml ├── app │ ├── BUCK │ ├── build.gradle │ ├── libs │ │ └── PLACEHOLDER │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnapi │ │ │ ├── AgoraModule.java │ │ │ ├── AgoraPackage.java │ │ │ ├── ConvertUtils.java │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── SurfaceViewManager.java │ │ ├── jniLibs │ │ ├── arm64-v8a │ │ │ └── PLACEHOLDER │ │ └── armeabi-v7a │ │ │ └── PLACEHOLDER │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── apis.md ├── app.json ├── components ├── AgoraRendererView.js └── AgoraRtcEngineModule.js ├── contributions.md ├── guide.md ├── index.js ├── ios ├── Agora-SDK-For-React-Native-API │ ├── AgoraEnum.h │ ├── AgoraEnum.m │ ├── AgoraNotify.h │ ├── AgoraRtcEngineModule+EnumConvert.h │ ├── AgoraRtcEngineModule+EnumConvert.m │ ├── AgoraRtcEngineModule.h │ ├── AgoraRtcEngineModule.m │ ├── AgoraViewManager.h │ ├── AgoraViewManager.m │ ├── AgroaEnumConvert.h │ └── AgroaEnumConvert.m ├── RNapi-tvOS │ └── Info.plist ├── RNapi-tvOSTests │ └── Info.plist ├── RNapi.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNapi-tvOS.xcscheme │ │ └── RNapi.xcscheme └── RNapi │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ └── main.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/README.zh.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /android/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/libs/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | agora-rtc-sdk.jar -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnapi/AgoraModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/java/com/rnapi/AgoraModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnapi/AgoraPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/java/com/rnapi/AgoraPackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnapi/ConvertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/java/com/rnapi/ConvertUtils.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnapi/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/java/com/rnapi/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnapi/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/java/com/rnapi/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnapi/SurfaceViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/java/com/rnapi/SurfaceViewManager.java -------------------------------------------------------------------------------- /android/app/src/main/jniLibs/arm64-v8a/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | libagora-rtc-sdk-jni.so -------------------------------------------------------------------------------- /android/app/src/main/jniLibs/armeabi-v7a/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | libagora-rtc-sdk-jni.so -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RNapi' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/apis.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/app.json -------------------------------------------------------------------------------- /components/AgoraRendererView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/components/AgoraRendererView.js -------------------------------------------------------------------------------- /components/AgoraRtcEngineModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/components/AgoraRtcEngineModule.js -------------------------------------------------------------------------------- /contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/contributions.md -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/guide.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/index.js -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraEnum.h -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraEnum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraEnum.m -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraNotify.h -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule+EnumConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule+EnumConvert.h -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule+EnumConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule+EnumConvert.m -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule.h -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraRtcEngineModule.m -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraViewManager.h -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgoraViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgoraViewManager.m -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgroaEnumConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgroaEnumConvert.h -------------------------------------------------------------------------------- /ios/Agora-SDK-For-React-Native-API/AgroaEnumConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/Agora-SDK-For-React-Native-API/AgroaEnumConvert.m -------------------------------------------------------------------------------- /ios/RNapi-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNapi-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNapi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNapi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNapi.xcodeproj/xcshareddata/xcschemes/RNapi-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi.xcodeproj/xcshareddata/xcschemes/RNapi-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNapi.xcodeproj/xcshareddata/xcschemes/RNapi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi.xcodeproj/xcshareddata/xcschemes/RNapi.xcscheme -------------------------------------------------------------------------------- /ios/RNapi/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNapi/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNapi/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNapi/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNapi/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNapi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/Info.plist -------------------------------------------------------------------------------- /ios/RNapi/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/ios/RNapi/main.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO/React-Native-SDK/HEAD/package.json --------------------------------------------------------------------------------