├── .gitignore ├── LICENSE ├── README.md ├── android ├── Dockerfile ├── build_openh264.sh ├── build_openssl.sh ├── build_opus.sh └── build_pjsip.sh ├── ios └── Dockerfile └── release.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/README.md -------------------------------------------------------------------------------- /android/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/android/Dockerfile -------------------------------------------------------------------------------- /android/build_openh264.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/android/build_openh264.sh -------------------------------------------------------------------------------- /android/build_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/android/build_openssl.sh -------------------------------------------------------------------------------- /android/build_opus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/android/build_opus.sh -------------------------------------------------------------------------------- /android/build_pjsip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/android/build_pjsip.sh -------------------------------------------------------------------------------- /ios/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/ios/Dockerfile -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datso/react-native-pjsip-builder/HEAD/release.sh --------------------------------------------------------------------------------