├── .gitignore ├── README.md ├── UXCamReactExample ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── uxcamreactexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── UXCamReactExample-tvOS │ │ └── Info.plist │ ├── UXCamReactExample-tvOSTests │ │ └── Info.plist │ ├── UXCamReactExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── UXCamReactExample-tvOS.xcscheme │ │ │ └── UXCamReactExample.xcscheme │ ├── UXCamReactExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── UXCamReactExampleTests │ │ ├── Info.plist │ │ └── UXCamReactExampleTests.m ├── metro.config.js ├── package.json └── yarn.lock └── uxcam-react-wrapper ├── README.md ├── RNUxcam.podspec ├── UXCam.js ├── android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle ├── libs │ └── uxcam.jar └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── uxcam │ ├── RNUxcamModule.java │ └── RNUxcamPackage.java ├── index.js ├── ios ├── AFNetworking-LICENSE.txt ├── BSBacktraceLogger-LICENSE.md ├── BSBacktraceLogger-README.md ├── CHANGELOG.md ├── FileMD5Hash-LICENSE ├── FileMD5Hash-NOTICE ├── GZIP-LICENCE.md ├── Info.plist ├── LICENSE-minizip ├── RNUxcam.h ├── RNUxcam.m ├── RNUxcam.xcodeproj │ └── project.pbxproj ├── SSZipArchive-LICENSE.txt ├── UXCam.a ├── UXCam.h └── iOSViewHierarchy-LICENSE.txt └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/README.md -------------------------------------------------------------------------------- /UXCamReactExample/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/.buckconfig -------------------------------------------------------------------------------- /UXCamReactExample/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /UXCamReactExample/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/.flowconfig -------------------------------------------------------------------------------- /UXCamReactExample/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /UXCamReactExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/.gitignore -------------------------------------------------------------------------------- /UXCamReactExample/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/.prettierrc.js -------------------------------------------------------------------------------- /UXCamReactExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /UXCamReactExample/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/App.js -------------------------------------------------------------------------------- /UXCamReactExample/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/__tests__/App-test.js -------------------------------------------------------------------------------- /UXCamReactExample/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/BUCK -------------------------------------------------------------------------------- /UXCamReactExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/build.gradle -------------------------------------------------------------------------------- /UXCamReactExample/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/build_defs.bzl -------------------------------------------------------------------------------- /UXCamReactExample/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/debug.keystore -------------------------------------------------------------------------------- /UXCamReactExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/java/com/uxcamreactexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/java/com/uxcamreactexample/MainActivity.java -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/java/com/uxcamreactexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/java/com/uxcamreactexample/MainApplication.java -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /UXCamReactExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /UXCamReactExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/build.gradle -------------------------------------------------------------------------------- /UXCamReactExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/gradle.properties -------------------------------------------------------------------------------- /UXCamReactExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /UXCamReactExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /UXCamReactExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/gradlew -------------------------------------------------------------------------------- /UXCamReactExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/gradlew.bat -------------------------------------------------------------------------------- /UXCamReactExample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/android/settings.gradle -------------------------------------------------------------------------------- /UXCamReactExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/app.json -------------------------------------------------------------------------------- /UXCamReactExample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/babel.config.js -------------------------------------------------------------------------------- /UXCamReactExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/index.js -------------------------------------------------------------------------------- /UXCamReactExample/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/Podfile -------------------------------------------------------------------------------- /UXCamReactExample/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/Podfile.lock -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample-tvOS/Info.plist -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample.xcodeproj/xcshareddata/xcschemes/UXCamReactExample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample.xcodeproj/xcshareddata/xcschemes/UXCamReactExample-tvOS.xcscheme -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample.xcodeproj/xcshareddata/xcschemes/UXCamReactExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample.xcodeproj/xcshareddata/xcschemes/UXCamReactExample.xcscheme -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/AppDelegate.h -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/AppDelegate.m -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/Info.plist -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExample/main.m -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExampleTests/Info.plist -------------------------------------------------------------------------------- /UXCamReactExample/ios/UXCamReactExampleTests/UXCamReactExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/ios/UXCamReactExampleTests/UXCamReactExampleTests.m -------------------------------------------------------------------------------- /UXCamReactExample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/metro.config.js -------------------------------------------------------------------------------- /UXCamReactExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/package.json -------------------------------------------------------------------------------- /UXCamReactExample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/UXCamReactExample/yarn.lock -------------------------------------------------------------------------------- /uxcam-react-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/README.md -------------------------------------------------------------------------------- /uxcam-react-wrapper/RNUxcam.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/RNUxcam.podspec -------------------------------------------------------------------------------- /uxcam-react-wrapper/UXCam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/UXCam.js -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/.classpath -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/.project -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/build.gradle -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/libs/uxcam.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/libs/uxcam.jar -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/src/main/java/com/uxcam/RNUxcamModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/src/main/java/com/uxcam/RNUxcamModule.java -------------------------------------------------------------------------------- /uxcam-react-wrapper/android/src/main/java/com/uxcam/RNUxcamPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/android/src/main/java/com/uxcam/RNUxcamPackage.java -------------------------------------------------------------------------------- /uxcam-react-wrapper/index.js: -------------------------------------------------------------------------------- 1 | 2 | 'use strict'; 3 | module.exports = require('./UXCam'); -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/AFNetworking-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/AFNetworking-LICENSE.txt -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/BSBacktraceLogger-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/BSBacktraceLogger-LICENSE.md -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/BSBacktraceLogger-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/BSBacktraceLogger-README.md -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/CHANGELOG.md -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/FileMD5Hash-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/FileMD5Hash-LICENSE -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/FileMD5Hash-NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/FileMD5Hash-NOTICE -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/GZIP-LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/GZIP-LICENCE.md -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/Info.plist -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/LICENSE-minizip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/LICENSE-minizip -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/RNUxcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/RNUxcam.h -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/RNUxcam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/RNUxcam.m -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/RNUxcam.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/RNUxcam.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/SSZipArchive-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/SSZipArchive-LICENSE.txt -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/UXCam.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/UXCam.a -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/UXCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/UXCam.h -------------------------------------------------------------------------------- /uxcam-react-wrapper/ios/iOSViewHierarchy-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/ios/iOSViewHierarchy-LICENSE.txt -------------------------------------------------------------------------------- /uxcam-react-wrapper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/negativetwelve/react-native-ux-cam/HEAD/uxcam-react-wrapper/package.json --------------------------------------------------------------------------------