├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __mocks__ └── react-native-camera.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── xml │ │ │ └── react_native_config.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── firebasetext │ │ │ ├── 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 ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── FirebaseText-tvOS │ └── Info.plist ├── FirebaseText-tvOSTests │ └── Info.plist ├── FirebaseText.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── FirebaseText-tvOS.xcscheme │ │ └── FirebaseText.xcscheme ├── FirebaseText.xcworkspace │ └── contents.xcworkspacedata ├── FirebaseText │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── FirebaseTextTests │ ├── FirebaseTextTests.m │ └── Info.plist ├── GoogleService-Info.plist ├── PodFile └── Podfile.lock ├── metro.config.js ├── package.json ├── src ├── config │ └── jest │ │ └── setupTests.js ├── index.js ├── pages │ ├── AuthLoadingScreen.js │ ├── Main │ │ └── index.js │ └── Welcome │ │ ├── __tests__ │ │ ├── Welcome.spec.js │ │ └── __snapshots__ │ │ │ └── Welcome.spec.js.snap │ │ ├── index.js │ │ └── styles.js ├── routes.js └── styles │ ├── globalStyles.js │ └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | 28 | [options] 29 | emoji=true 30 | 31 | esproposal.optional_chaining=enable 32 | esproposal.nullish_coalescing=enable 33 | 34 | module.system=haste 35 | module.system.haste.use_name_reducers=true 36 | # get basename 37 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 38 | # strip .js or .js.flow suffix 39 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 40 | # strip .ios suffix 41 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 42 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 44 | module.system.haste.paths.blacklist=.*/__tests__/.* 45 | module.system.haste.paths.blacklist=.*/__mocks__/.* 46 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 47 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 48 | 49 | munge_underscores=true 50 | 51 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 52 | 53 | module.file_ext=.js 54 | module.file_ext=.jsx 55 | module.file_ext=.json 56 | module.file_ext=.native.js 57 | 58 | suppress_type=$FlowIssue 59 | suppress_type=$FlowFixMe 60 | suppress_type=$FlowFixMeProps 61 | suppress_type=$FlowFixMeState 62 | 63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 67 | 68 | [version] 69 | ^0.92.0 70 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | Pods/ 25 | 26 | # Android/IntelliJ 27 | # 28 | build/ 29 | .idea 30 | .gradle 31 | local.properties 32 | *.iml 33 | 34 | # node.js 35 | # 36 | node_modules/ 37 | npm-debug.log 38 | yarn-error.log 39 | 40 | # BUCK 41 | buck-out/ 42 | \.buckd/ 43 | *.keystore 44 | 45 | # fastlane 46 | # 47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 | # screenshots whenever they are needed. 49 | # For more information about the recommended setup visit: 50 | # https://docs.fastlane.tools/best-practices/source-control/ 51 | 52 | */fastlane/report.xml 53 | */fastlane/Preview.html 54 | */fastlane/screenshots 55 | 56 | # Bundle artifact 57 | *.jsbundle 58 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-text-recognition 2 | 3 | This a App that can recognize text in images using Firebase ML Kit Text Recognition, was made using React Native and the react-native-firebase-mlkit package that is available in this [repository](https://github.com/mateusc42/react-native-firebase-mlkit). 4 | 5 | React Native 0.59.1 6 | 7 | React Native Firebase MLKit 0.6.2 8 | 9 | ### Installation 10 | 11 | This application needs [Node.js](https://nodejs.org/) installed together with [NPM](https://www.npmjs.com/get-npm) so you will be able to install [react-native-cli](https://www.npmjs.com/package/react-native-cli) and afther this you can execute the commands below 12 | 13 | In addition, it will be necessary for you to have all the necessary environment for running native Android or IOS code or those two platforms 14 | 15 | If you need help setting up your environment just follow the [instructions](https://rocketseat.com.br/assets/files/ambiente-de-desenvolvimento-rn.pdf) of this tutorial 16 | 17 | First use the `` git clone`` after this 18 | 19 | ``` 20 | $ cd react-native-text-recognition 21 | 22 | $ npm install i 23 | 24 | // Or you can use Yarn 25 | 26 | $ yarn install 27 | 28 | // Command to run the application 29 | 30 | $ react-native run-android 31 | 32 | // Or it can be on iOS devices 33 | 34 | $ react-native run-ios 35 | ``` 36 | To run tests use ```npm test``` or ```yarn test``` 37 | -------------------------------------------------------------------------------- /__mocks__/react-native-camera.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | const timeout = ms => new Promise(resolve => setTimeout(resolve, ms)); 4 | 5 | export class RNCamera extends React.Component { 6 | static Constants = { 7 | Aspect: {}, 8 | BarCodeType: {}, 9 | Type: { back: 'back', front: 'front' }, 10 | CaptureMode: {}, 11 | CaptureTarget: {}, 12 | CaptureQuality: {}, 13 | Orientation: {}, 14 | FlashMode: {}, 15 | TorchMode: {}, 16 | }; 17 | 18 | takePictureAsync = async () => { 19 | await timeout(2000); 20 | return { 21 | base64: 'base64string', 22 | }; 23 | }; 24 | 25 | render() { 26 | return null; 27 | } 28 | } 29 | 30 | export default RNCamera; -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.firebasetext", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.firebasetext", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | 99 | compileOptions { 100 | sourceCompatibility JavaVersion.VERSION_1_8 101 | targetCompatibility JavaVersion.VERSION_1_8 102 | } 103 | 104 | packagingOptions { 105 | exclude 'META-INF/androidx.exifinterface_exifinterface.version' 106 | exclude 'META-INF/proguard/androidx-annotations.pro' 107 | } 108 | 109 | defaultConfig { 110 | applicationId "com.firebasetext" 111 | minSdkVersion rootProject.ext.minSdkVersion 112 | targetSdkVersion rootProject.ext.targetSdkVersion 113 | missingDimensionStrategy 'react-native-camera', 'general' 114 | versionCode 1 115 | versionName "1.0" 116 | } 117 | splits { 118 | abi { 119 | reset() 120 | enable enableSeparateBuildPerCPUArchitecture 121 | universalApk false // If true, also generate a universal APK 122 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 123 | } 124 | } 125 | buildTypes { 126 | release { 127 | minifyEnabled enableProguardInReleaseBuilds 128 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 129 | } 130 | } 131 | // applicationVariants are e.g. debug, release 132 | applicationVariants.all { variant -> 133 | variant.outputs.each { output -> 134 | // For each separate APK per architecture, set a unique version code as described here: 135 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 136 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] 137 | def abi = output.getFilter(OutputFile.ABI) 138 | if (abi != null) { // null for the universal-debug, universal-release variants 139 | output.versionCodeOverride = 140 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 141 | } 142 | } 143 | } 144 | } 145 | 146 | dependencies { 147 | implementation 'com.google.firebase:firebase-core:16.0.7' 148 | implementation 'com.google.firebase:firebase-ml-vision:19.0.2' 149 | implementation (project(':react-native-firebase-mlkit')) { 150 | exclude group: 'com.google.firebase' 151 | } 152 | implementation project(':react-native-camera') 153 | implementation project(':react-native-gesture-handler') 154 | implementation project(':react-native-vector-icons') 155 | implementation fileTree(dir: "libs", include: ["*.jar"]) 156 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 157 | implementation "com.facebook.react:react-native:+" // From node_modules 158 | } 159 | 160 | // Run this once to be able to run the application with BUCK 161 | // puts all compile dependencies into folder libs for BUCK to use 162 | task copyDownloadableDepsToLibs(type: Copy) { 163 | from configurations.compile 164 | into 'libs' 165 | } 166 | 167 | apply plugin: 'com.google.gms.google-services' 168 | 169 | // Work around for onesignal-gradle-plugin compatibility 170 | com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true 171 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_number": "173425513255", 4 | "firebase_url": "https://reactnativeml.firebaseio.com", 5 | "project_id": "reactnativeml", 6 | "storage_bucket": "reactnativeml.appspot.com" 7 | }, 8 | "client": [ 9 | { 10 | "client_info": { 11 | "mobilesdk_app_id": "1:173425513255:android:3a73f7ce11610c58", 12 | "android_client_info": { 13 | "package_name": "com.firebasetext" 14 | } 15 | }, 16 | "oauth_client": [ 17 | { 18 | "client_id": "173425513255-v5adaiulhn93kqe4lhv7kum2idsj5fu9.apps.googleusercontent.com", 19 | "client_type": 3 20 | } 21 | ], 22 | "api_key": [ 23 | { 24 | "current_key": "AIzaSyD3kEx3SrAAh3FLwsLYwBCT6XR9DfPvCqM" 25 | } 26 | ], 27 | "services": { 28 | "analytics_service": { 29 | "status": 1 30 | }, 31 | "appinvite_service": { 32 | "status": 1, 33 | "other_platform_oauth_client": [] 34 | }, 35 | "ads_service": { 36 | "status": 2 37 | } 38 | } 39 | } 40 | ], 41 | "configuration_version": "1" 42 | } -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/debug/res/xml/react_native_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | localhost 5 | 10.0.2.2 6 | 10.0.3.2 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/firebasetext/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.firebasetext; 2 | 3 | import com.facebook.react.ReactActivity; 4 | import com.facebook.react.ReactActivityDelegate; 5 | import com.facebook.react.ReactRootView; 6 | import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView; 7 | 8 | public class MainActivity extends ReactActivity { 9 | 10 | /** 11 | * Returns the name of the main component registered from JavaScript. 12 | * This is used to schedule rendering of the component. 13 | */ 14 | @Override 15 | protected String getMainComponentName() { 16 | return "FirebaseText"; 17 | } 18 | 19 | @Override 20 | protected ReactActivityDelegate createReactActivityDelegate() { 21 | 22 | return new ReactActivityDelegate(this, getMainComponentName()) { 23 | 24 | @Override 25 | protected ReactRootView createRootView() { 26 | return new RNGestureHandlerEnabledRootView(MainActivity.this); 27 | } 28 | 29 | }; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/firebasetext/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.firebasetext; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.mlkit.RNMlKitPackage; 7 | import org.reactnative.camera.RNCameraPackage; 8 | import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; 9 | import com.oblador.vectoricons.VectorIconsPackage; 10 | import com.facebook.react.ReactNativeHost; 11 | import com.facebook.react.ReactPackage; 12 | import com.facebook.react.shell.MainReactPackage; 13 | import com.facebook.soloader.SoLoader; 14 | 15 | import java.util.Arrays; 16 | import java.util.List; 17 | 18 | public class MainApplication extends Application implements ReactApplication { 19 | 20 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 21 | @Override 22 | public boolean getUseDeveloperSupport() { 23 | return BuildConfig.DEBUG; 24 | } 25 | 26 | @Override 27 | protected List getPackages() { 28 | return Arrays.asList( 29 | new MainReactPackage(), 30 | new RNMlKitPackage(), 31 | new RNCameraPackage(), 32 | new RNGestureHandlerPackage(), 33 | new VectorIconsPackage() 34 | ); 35 | } 36 | 37 | @Override 38 | protected String getJSMainModuleName() { 39 | return "index"; 40 | } 41 | }; 42 | 43 | @Override 44 | public ReactNativeHost getReactNativeHost() { 45 | return mReactNativeHost; 46 | } 47 | 48 | @Override 49 | public void onCreate() { 50 | super.onCreate(); 51 | SoLoader.init(this, /* native exopackage */ false); 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FirebaseText 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath 'com.android.tools.build:gradle:3.3.0' 17 | classpath 'com.google.gms:google-services:4.0.2' 18 | 19 | // NOTE: Do not place your application dependencies here; they belong 20 | // in the individual module build.gradle files 21 | } 22 | } 23 | 24 | allprojects { 25 | repositories { 26 | mavenLocal() 27 | google() 28 | jcenter() 29 | maven { url "https://jitpack.io" } 30 | maven { url "https://maven.google.com" } 31 | maven { 32 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 33 | url "$rootDir/../node_modules/react-native/android" 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tadeumx1/react-native-text-recognition/065d3ea119a8c166c9290297784d9a5ad3b5f917/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'FirebaseText' 2 | include ':react-native-firebase-mlkit' 3 | project(':react-native-firebase-mlkit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase-mlkit/android') 4 | include ':react-native-camera' 5 | project(':react-native-camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera/android') 6 | include ':react-native-gesture-handler' 7 | project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') 8 | include ':react-native-vector-icons' 9 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 10 | 11 | include ':app' 12 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirebaseText", 3 | "displayName": "FirebaseText" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | import {AppRegistry} from 'react-native'; 3 | import App from './src'; 4 | import {name as appName} from './app.json'; 5 | 6 | AppRegistry.registerComponent(appName, () => App); 7 | -------------------------------------------------------------------------------- /ios/FirebaseText-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/FirebaseText-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/FirebaseText.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* FirebaseTextTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FirebaseTextTests.m */; }; 16 | 0870EFAF8EE0EA02731B5D11 /* libPods-FirebaseText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D8EE363EDFCCE1EC29568EA9 /* libPods-FirebaseText-tvOS.a */; }; 17 | 0B2FED62D1CC43ABB0C064E8 /* libRNCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B5E8A8153E594A35AFAED262 /* libRNCamera.a */; }; 18 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 19 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 20 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 21 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 22 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 23 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 24 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 25 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 26 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 27 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 28 | 15F0BDF0679C4473ADEB4CBE /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 347B76500F9543CBAC9D579D /* MaterialCommunityIcons.ttf */; }; 29 | 1D77609666FC4232B45880AC /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1177BB5655B74414A34144BA /* FontAwesome5_Solid.ttf */; }; 30 | 1E328AAA97C201A86C0A1767 /* libPods-FirebaseTextTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A6EB894F4EA3FEEE63D6D284 /* libPods-FirebaseTextTests.a */; }; 31 | 20E1EDCFF73A4720B26FA707 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FBF9732938A84D8AAF2D6223 /* Ionicons.ttf */; }; 32 | 2594B17D63CF4B628E97BC34 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9E6D8577C5BE4FA5A1073133 /* Feather.ttf */; }; 33 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 34 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 35 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 36 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 37 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 38 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 39 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 40 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 41 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 42 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 43 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 44 | 2DCD954D1E0B4F2C00145EB5 /* FirebaseTextTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FirebaseTextTests.m */; }; 45 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 46 | 305A04D4F9024957B9C7EEF8 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 17CC895D31464871A0BFE9E0 /* Foundation.ttf */; }; 47 | 4404D56932F58A8A1A3D659E /* libPods-FirebaseText-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EC9ABAAD515D61F78862CB4E /* libPods-FirebaseText-tvOSTests.a */; }; 48 | 47393A1107A24F26B6A3DCAC /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7FE4FB1878084EED911C2D70 /* AntDesign.ttf */; }; 49 | 5CB2041B481F4877B9BEC102 /* libRNGestureHandler-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31AEDB9321B24264B817663A /* libRNGestureHandler-tvOS.a */; }; 50 | 808451D2E4CC4A4BA2890838 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 90A858EF92E3434D8F9A088D /* Entypo.ttf */; }; 51 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 52 | 8A078B2A39FA462A8155A7D6 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 98D24BACEF174028A601CD7C /* FontAwesome5_Brands.ttf */; }; 53 | 8A7CF7CD955E07B443FDFA87 /* libPods-FirebaseText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 162F5B0496CF0ADD335FF3C2 /* libPods-FirebaseText.a */; }; 54 | 96779FECFEF8406AA07937DD /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 616D10D732314B00AB45FECE /* libRNGestureHandler.a */; }; 55 | 99BDC4CCB1AC4BEF84C835E7 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 44D55FD4CE184C64B7933C43 /* EvilIcons.ttf */; }; 56 | 9ED3DFAB04C342F69D5C9820 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 084ACBB3E779465D9737FFC4 /* FontAwesome5_Regular.ttf */; }; 57 | A03855E729724211B2BE7158 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B7E372098E3542B4ADB9ED6E /* Zocial.ttf */; }; 58 | A595FF9F0DC74B3C9A4FF4B4 /* libRNMlKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BC76F4943DCE4B2F86A291A1 /* libRNMlKit.a */; }; 59 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 60 | CDCBA385BED14EE7A3165811 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ABCD5A80160E4E2EA81D64A1 /* FontAwesome.ttf */; }; 61 | DCB8102D0FE84D0AA714F3A0 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7D6FC514AE20441BBC235972 /* MaterialIcons.ttf */; }; 62 | EB039F0DAB1D4E36A85062A5 /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 68BA6B69DB714A4DA35D93E8 /* libRNVectorIcons-tvOS.a */; }; 63 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; }; 64 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; }; 65 | F2D9AFEA2110409B935D59F0 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F5820B3CA9841F18FB7EDF0 /* libRNVectorIcons.a */; }; 66 | F445010DEDBC41E2981B8E15 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C554FFB85DBB4411A7C84BCC /* SimpleLineIcons.ttf */; }; 67 | FF633B4A47B44AF8AC0986F0 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 66328BC4EF3A46F9B83CF803 /* Octicons.ttf */; }; 68 | /* End PBXBuildFile section */ 69 | 70 | /* Begin PBXContainerItemProxy section */ 71 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 76 | remoteInfo = RCTActionSheet; 77 | }; 78 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 83 | remoteInfo = RCTGeolocation; 84 | }; 85 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 90 | remoteInfo = RCTImage; 91 | }; 92 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 95 | proxyType = 2; 96 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 97 | remoteInfo = RCTNetwork; 98 | }; 99 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 102 | proxyType = 2; 103 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 104 | remoteInfo = RCTVibration; 105 | }; 106 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 109 | proxyType = 1; 110 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 111 | remoteInfo = FirebaseText; 112 | }; 113 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 118 | remoteInfo = RCTSettings; 119 | }; 120 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 123 | proxyType = 2; 124 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 125 | remoteInfo = RCTWebSocket; 126 | }; 127 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 130 | proxyType = 2; 131 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 132 | remoteInfo = React; 133 | }; 134 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 135 | isa = PBXContainerItemProxy; 136 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 137 | proxyType = 1; 138 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 139 | remoteInfo = "FirebaseText-tvOS"; 140 | }; 141 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 142 | isa = PBXContainerItemProxy; 143 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 144 | proxyType = 2; 145 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 146 | remoteInfo = "RCTBlob-tvOS"; 147 | }; 148 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 149 | isa = PBXContainerItemProxy; 150 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 151 | proxyType = 2; 152 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 153 | remoteInfo = fishhook; 154 | }; 155 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 156 | isa = PBXContainerItemProxy; 157 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 158 | proxyType = 2; 159 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 160 | remoteInfo = "fishhook-tvOS"; 161 | }; 162 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 163 | isa = PBXContainerItemProxy; 164 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 165 | proxyType = 2; 166 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 167 | remoteInfo = jsinspector; 168 | }; 169 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 170 | isa = PBXContainerItemProxy; 171 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 172 | proxyType = 2; 173 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 174 | remoteInfo = "jsinspector-tvOS"; 175 | }; 176 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 177 | isa = PBXContainerItemProxy; 178 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 179 | proxyType = 2; 180 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 181 | remoteInfo = "third-party"; 182 | }; 183 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 184 | isa = PBXContainerItemProxy; 185 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 186 | proxyType = 2; 187 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 188 | remoteInfo = "third-party-tvOS"; 189 | }; 190 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 191 | isa = PBXContainerItemProxy; 192 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 193 | proxyType = 2; 194 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 195 | remoteInfo = "double-conversion"; 196 | }; 197 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 198 | isa = PBXContainerItemProxy; 199 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 200 | proxyType = 2; 201 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 202 | remoteInfo = "double-conversion-tvOS"; 203 | }; 204 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 205 | isa = PBXContainerItemProxy; 206 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 207 | proxyType = 2; 208 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 209 | remoteInfo = privatedata; 210 | }; 211 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 212 | isa = PBXContainerItemProxy; 213 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 214 | proxyType = 2; 215 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 216 | remoteInfo = "privatedata-tvOS"; 217 | }; 218 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 219 | isa = PBXContainerItemProxy; 220 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 221 | proxyType = 2; 222 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 223 | remoteInfo = "RCTImage-tvOS"; 224 | }; 225 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 226 | isa = PBXContainerItemProxy; 227 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 228 | proxyType = 2; 229 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 230 | remoteInfo = "RCTLinking-tvOS"; 231 | }; 232 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 233 | isa = PBXContainerItemProxy; 234 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 235 | proxyType = 2; 236 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 237 | remoteInfo = "RCTNetwork-tvOS"; 238 | }; 239 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 244 | remoteInfo = "RCTSettings-tvOS"; 245 | }; 246 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 251 | remoteInfo = "RCTText-tvOS"; 252 | }; 253 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 254 | isa = PBXContainerItemProxy; 255 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 256 | proxyType = 2; 257 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 258 | remoteInfo = "RCTWebSocket-tvOS"; 259 | }; 260 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 261 | isa = PBXContainerItemProxy; 262 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 263 | proxyType = 2; 264 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 265 | remoteInfo = "React-tvOS"; 266 | }; 267 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 268 | isa = PBXContainerItemProxy; 269 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 270 | proxyType = 2; 271 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 272 | remoteInfo = yoga; 273 | }; 274 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 275 | isa = PBXContainerItemProxy; 276 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 277 | proxyType = 2; 278 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 279 | remoteInfo = "yoga-tvOS"; 280 | }; 281 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 282 | isa = PBXContainerItemProxy; 283 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 284 | proxyType = 2; 285 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 286 | remoteInfo = cxxreact; 287 | }; 288 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 289 | isa = PBXContainerItemProxy; 290 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 291 | proxyType = 2; 292 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 293 | remoteInfo = "cxxreact-tvOS"; 294 | }; 295 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 296 | isa = PBXContainerItemProxy; 297 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 298 | proxyType = 2; 299 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 300 | remoteInfo = jschelpers; 301 | }; 302 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 303 | isa = PBXContainerItemProxy; 304 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 305 | proxyType = 2; 306 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 307 | remoteInfo = "jschelpers-tvOS"; 308 | }; 309 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 310 | isa = PBXContainerItemProxy; 311 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 312 | proxyType = 2; 313 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 314 | remoteInfo = RCTAnimation; 315 | }; 316 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 317 | isa = PBXContainerItemProxy; 318 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 319 | proxyType = 2; 320 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 321 | remoteInfo = "RCTAnimation-tvOS"; 322 | }; 323 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 324 | isa = PBXContainerItemProxy; 325 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 326 | proxyType = 2; 327 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 328 | remoteInfo = RCTLinking; 329 | }; 330 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 331 | isa = PBXContainerItemProxy; 332 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 333 | proxyType = 2; 334 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 335 | remoteInfo = RCTText; 336 | }; 337 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 338 | isa = PBXContainerItemProxy; 339 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 340 | proxyType = 2; 341 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 342 | remoteInfo = RCTBlob; 343 | }; 344 | /* End PBXContainerItemProxy section */ 345 | 346 | /* Begin PBXFileReference section */ 347 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 348 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 349 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 350 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 351 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 352 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 353 | 00E356EE1AD99517003FC87E /* FirebaseTextTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FirebaseTextTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 354 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 355 | 00E356F21AD99517003FC87E /* FirebaseTextTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FirebaseTextTests.m; sourceTree = ""; }; 356 | 084ACBB3E779465D9737FFC4 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; }; 357 | 1177BB5655B74414A34144BA /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; }; 358 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 359 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 360 | 13B07F961A680F5B00A75B9A /* FirebaseText.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FirebaseText.app; sourceTree = BUILT_PRODUCTS_DIR; }; 361 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = FirebaseText/AppDelegate.h; sourceTree = ""; }; 362 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = FirebaseText/AppDelegate.m; sourceTree = ""; }; 363 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 364 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FirebaseText/Images.xcassets; sourceTree = ""; }; 365 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FirebaseText/Info.plist; sourceTree = ""; }; 366 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FirebaseText/main.m; sourceTree = ""; }; 367 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 368 | 162F5B0496CF0ADD335FF3C2 /* libPods-FirebaseText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FirebaseText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 369 | 17CC895D31464871A0BFE9E0 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 370 | 1F5820B3CA9841F18FB7EDF0 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = archive.ar; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = ""; }; 371 | 270CBB05771FF167D2573AC2 /* Pods-FirebaseText-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseText-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-FirebaseText-tvOSTests/Pods-FirebaseText-tvOSTests.debug.xcconfig"; sourceTree = ""; }; 372 | 2D02E47B1E0B4A5D006451C7 /* FirebaseText-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "FirebaseText-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 373 | 2D02E4901E0B4A5D006451C7 /* FirebaseText-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "FirebaseText-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 374 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 375 | 31AEDB9321B24264B817663A /* libRNGestureHandler-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = archive.ar; name = "libRNGestureHandler-tvOS.a"; path = "libRNGestureHandler-tvOS.a"; sourceTree = ""; }; 376 | 347B76500F9543CBAC9D579D /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 377 | 3C30C6E53846CE133699DC48 /* Pods-FirebaseText-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseText-tvOS.release.xcconfig"; path = "Target Support Files/Pods-FirebaseText-tvOS/Pods-FirebaseText-tvOS.release.xcconfig"; sourceTree = ""; }; 378 | 44D55FD4CE184C64B7933C43 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 379 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 380 | 616D10D732314B00AB45FECE /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = archive.ar; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = ""; }; 381 | 66328BC4EF3A46F9B83CF803 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 382 | 68BA6B69DB714A4DA35D93E8 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = archive.ar; name = "libRNVectorIcons-tvOS.a"; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; }; 383 | 711EB32678A9467695EA1A8B /* RNCamera.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNCamera.xcodeproj; path = "../node_modules/react-native-camera/ios/RNCamera.xcodeproj"; sourceTree = ""; }; 384 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 385 | 7D6FC514AE20441BBC235972 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 386 | 7FE4FB1878084EED911C2D70 /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; }; 387 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 388 | 8DE5742D9B7E6423F6560117 /* Pods-FirebaseText-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseText-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-FirebaseText-tvOS/Pods-FirebaseText-tvOS.debug.xcconfig"; sourceTree = ""; }; 389 | 90A858EF92E3434D8F9A088D /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 390 | 98D24BACEF174028A601CD7C /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; 391 | 990A16CDC4654C87A383ECCD /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 392 | 9E6D8577C5BE4FA5A1073133 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 393 | A0C8F407708EB1B86CC283C0 /* Pods-FirebaseTextTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseTextTests.release.xcconfig"; path = "Target Support Files/Pods-FirebaseTextTests/Pods-FirebaseTextTests.release.xcconfig"; sourceTree = ""; }; 394 | A6EB894F4EA3FEEE63D6D284 /* libPods-FirebaseTextTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FirebaseTextTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 395 | AAC86DEB57BA1686D9AF542E /* Pods-FirebaseText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseText.release.xcconfig"; path = "Target Support Files/Pods-FirebaseText/Pods-FirebaseText.release.xcconfig"; sourceTree = ""; }; 396 | ABCD5A80160E4E2EA81D64A1 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 397 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 398 | B5E8A8153E594A35AFAED262 /* libRNCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = archive.ar; name = libRNCamera.a; path = libRNCamera.a; sourceTree = ""; }; 399 | B77310E20AAB04171AE87599 /* Pods-FirebaseText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseText.debug.xcconfig"; path = "Target Support Files/Pods-FirebaseText/Pods-FirebaseText.debug.xcconfig"; sourceTree = ""; }; 400 | B7E372098E3542B4ADB9ED6E /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 401 | BC76F4943DCE4B2F86A291A1 /* libRNMlKit.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = archive.ar; name = libRNMlKit.a; path = libRNMlKit.a; sourceTree = ""; }; 402 | BD57D4A3142F42C53BA18369 /* Pods-FirebaseText-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseText-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-FirebaseText-tvOSTests/Pods-FirebaseText-tvOSTests.release.xcconfig"; sourceTree = ""; }; 403 | C554FFB85DBB4411A7C84BCC /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 404 | CB500E845B1745E38025E104 /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNGestureHandler.xcodeproj; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = ""; }; 405 | D2A34486E13D4E728CC3E347 /* RNMlKit.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNMlKit.xcodeproj; path = "../node_modules/react-native-firebase-mlkit/ios/RNMlKit.xcodeproj"; sourceTree = ""; }; 406 | D8EE363EDFCCE1EC29568EA9 /* libPods-FirebaseText-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FirebaseText-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 407 | EC9ABAAD515D61F78862CB4E /* libPods-FirebaseText-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FirebaseText-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 408 | ECA4B967106608F9B82A0DCD /* Pods-FirebaseTextTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FirebaseTextTests.debug.xcconfig"; path = "Target Support Files/Pods-FirebaseTextTests/Pods-FirebaseTextTests.debug.xcconfig"; sourceTree = ""; }; 409 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 410 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 411 | FBF9732938A84D8AAF2D6223 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 412 | /* End PBXFileReference section */ 413 | 414 | /* Begin PBXFrameworksBuildPhase section */ 415 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 416 | isa = PBXFrameworksBuildPhase; 417 | buildActionMask = 2147483647; 418 | files = ( 419 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 420 | 1E328AAA97C201A86C0A1767 /* libPods-FirebaseTextTests.a in Frameworks */, 421 | ); 422 | runOnlyForDeploymentPostprocessing = 0; 423 | }; 424 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 425 | isa = PBXFrameworksBuildPhase; 426 | buildActionMask = 2147483647; 427 | files = ( 428 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 429 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 430 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 431 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 432 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 433 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 434 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 435 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 436 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 437 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 438 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 439 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 440 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 441 | F2D9AFEA2110409B935D59F0 /* libRNVectorIcons.a in Frameworks */, 442 | 96779FECFEF8406AA07937DD /* libRNGestureHandler.a in Frameworks */, 443 | 0B2FED62D1CC43ABB0C064E8 /* libRNCamera.a in Frameworks */, 444 | A595FF9F0DC74B3C9A4FF4B4 /* libRNMlKit.a in Frameworks */, 445 | 8A7CF7CD955E07B443FDFA87 /* libPods-FirebaseText.a in Frameworks */, 446 | ); 447 | runOnlyForDeploymentPostprocessing = 0; 448 | }; 449 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 450 | isa = PBXFrameworksBuildPhase; 451 | buildActionMask = 2147483647; 452 | files = ( 453 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 454 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 455 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 456 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 457 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 458 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 459 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 460 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 461 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 462 | EB039F0DAB1D4E36A85062A5 /* libRNVectorIcons-tvOS.a in Frameworks */, 463 | 5CB2041B481F4877B9BEC102 /* libRNGestureHandler-tvOS.a in Frameworks */, 464 | 0870EFAF8EE0EA02731B5D11 /* libPods-FirebaseText-tvOS.a in Frameworks */, 465 | ); 466 | runOnlyForDeploymentPostprocessing = 0; 467 | }; 468 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 469 | isa = PBXFrameworksBuildPhase; 470 | buildActionMask = 2147483647; 471 | files = ( 472 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 473 | 4404D56932F58A8A1A3D659E /* libPods-FirebaseText-tvOSTests.a in Frameworks */, 474 | ); 475 | runOnlyForDeploymentPostprocessing = 0; 476 | }; 477 | /* End PBXFrameworksBuildPhase section */ 478 | 479 | /* Begin PBXGroup section */ 480 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 481 | isa = PBXGroup; 482 | children = ( 483 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 484 | ); 485 | name = Products; 486 | sourceTree = ""; 487 | }; 488 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 489 | isa = PBXGroup; 490 | children = ( 491 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 492 | ); 493 | name = Products; 494 | sourceTree = ""; 495 | }; 496 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 497 | isa = PBXGroup; 498 | children = ( 499 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 500 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 501 | ); 502 | name = Products; 503 | sourceTree = ""; 504 | }; 505 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 506 | isa = PBXGroup; 507 | children = ( 508 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 509 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 510 | ); 511 | name = Products; 512 | sourceTree = ""; 513 | }; 514 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 515 | isa = PBXGroup; 516 | children = ( 517 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 518 | ); 519 | name = Products; 520 | sourceTree = ""; 521 | }; 522 | 00E356EF1AD99517003FC87E /* FirebaseTextTests */ = { 523 | isa = PBXGroup; 524 | children = ( 525 | 00E356F21AD99517003FC87E /* FirebaseTextTests.m */, 526 | 00E356F01AD99517003FC87E /* Supporting Files */, 527 | ); 528 | path = FirebaseTextTests; 529 | sourceTree = ""; 530 | }; 531 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 532 | isa = PBXGroup; 533 | children = ( 534 | 00E356F11AD99517003FC87E /* Info.plist */, 535 | ); 536 | name = "Supporting Files"; 537 | sourceTree = ""; 538 | }; 539 | 139105B71AF99BAD00B5F7CC /* Products */ = { 540 | isa = PBXGroup; 541 | children = ( 542 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 543 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 544 | ); 545 | name = Products; 546 | sourceTree = ""; 547 | }; 548 | 139FDEE71B06529A00C62182 /* Products */ = { 549 | isa = PBXGroup; 550 | children = ( 551 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 552 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 553 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 554 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 555 | ); 556 | name = Products; 557 | sourceTree = ""; 558 | }; 559 | 13B07FAE1A68108700A75B9A /* FirebaseText */ = { 560 | isa = PBXGroup; 561 | children = ( 562 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 563 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 564 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 565 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 566 | 13B07FB61A68108700A75B9A /* Info.plist */, 567 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 568 | 13B07FB71A68108700A75B9A /* main.m */, 569 | ); 570 | name = FirebaseText; 571 | sourceTree = ""; 572 | }; 573 | 146834001AC3E56700842450 /* Products */ = { 574 | isa = PBXGroup; 575 | children = ( 576 | 146834041AC3E56700842450 /* libReact.a */, 577 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 578 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 579 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 580 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 581 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 582 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 583 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 584 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 585 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 586 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 587 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 588 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 589 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 590 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 591 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 592 | ); 593 | name = Products; 594 | sourceTree = ""; 595 | }; 596 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 597 | isa = PBXGroup; 598 | children = ( 599 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 600 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 601 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 602 | 162F5B0496CF0ADD335FF3C2 /* libPods-FirebaseText.a */, 603 | D8EE363EDFCCE1EC29568EA9 /* libPods-FirebaseText-tvOS.a */, 604 | EC9ABAAD515D61F78862CB4E /* libPods-FirebaseText-tvOSTests.a */, 605 | A6EB894F4EA3FEEE63D6D284 /* libPods-FirebaseTextTests.a */, 606 | ); 607 | name = Frameworks; 608 | sourceTree = ""; 609 | }; 610 | 2D680B1E6C374BC6BA3A27C5 /* Resources */ = { 611 | isa = PBXGroup; 612 | children = ( 613 | 7FE4FB1878084EED911C2D70 /* AntDesign.ttf */, 614 | 90A858EF92E3434D8F9A088D /* Entypo.ttf */, 615 | 44D55FD4CE184C64B7933C43 /* EvilIcons.ttf */, 616 | 9E6D8577C5BE4FA5A1073133 /* Feather.ttf */, 617 | ABCD5A80160E4E2EA81D64A1 /* FontAwesome.ttf */, 618 | 98D24BACEF174028A601CD7C /* FontAwesome5_Brands.ttf */, 619 | 084ACBB3E779465D9737FFC4 /* FontAwesome5_Regular.ttf */, 620 | 1177BB5655B74414A34144BA /* FontAwesome5_Solid.ttf */, 621 | 17CC895D31464871A0BFE9E0 /* Foundation.ttf */, 622 | FBF9732938A84D8AAF2D6223 /* Ionicons.ttf */, 623 | 347B76500F9543CBAC9D579D /* MaterialCommunityIcons.ttf */, 624 | 7D6FC514AE20441BBC235972 /* MaterialIcons.ttf */, 625 | 66328BC4EF3A46F9B83CF803 /* Octicons.ttf */, 626 | C554FFB85DBB4411A7C84BCC /* SimpleLineIcons.ttf */, 627 | B7E372098E3542B4ADB9ED6E /* Zocial.ttf */, 628 | ); 629 | name = Resources; 630 | path = ""; 631 | sourceTree = ""; 632 | }; 633 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 634 | isa = PBXGroup; 635 | children = ( 636 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 637 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 638 | ); 639 | name = Products; 640 | sourceTree = ""; 641 | }; 642 | 78C398B11ACF4ADC00677621 /* Products */ = { 643 | isa = PBXGroup; 644 | children = ( 645 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 646 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 647 | ); 648 | name = Products; 649 | sourceTree = ""; 650 | }; 651 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 652 | isa = PBXGroup; 653 | children = ( 654 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 655 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 656 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 657 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 658 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 659 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 660 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 661 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 662 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 663 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 664 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 665 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 666 | 990A16CDC4654C87A383ECCD /* RNVectorIcons.xcodeproj */, 667 | CB500E845B1745E38025E104 /* RNGestureHandler.xcodeproj */, 668 | 711EB32678A9467695EA1A8B /* RNCamera.xcodeproj */, 669 | D2A34486E13D4E728CC3E347 /* RNMlKit.xcodeproj */, 670 | ); 671 | name = Libraries; 672 | sourceTree = ""; 673 | }; 674 | 832341B11AAA6A8300B99B32 /* Products */ = { 675 | isa = PBXGroup; 676 | children = ( 677 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 678 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 679 | ); 680 | name = Products; 681 | sourceTree = ""; 682 | }; 683 | 83CBB9F61A601CBA00E9B192 = { 684 | isa = PBXGroup; 685 | children = ( 686 | 13B07FAE1A68108700A75B9A /* FirebaseText */, 687 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 688 | 00E356EF1AD99517003FC87E /* FirebaseTextTests */, 689 | 83CBBA001A601CBA00E9B192 /* Products */, 690 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 691 | 2D680B1E6C374BC6BA3A27C5 /* Resources */, 692 | CD00960F760569698536F9D9 /* Pods */, 693 | ); 694 | indentWidth = 2; 695 | sourceTree = ""; 696 | tabWidth = 2; 697 | usesTabs = 0; 698 | }; 699 | 83CBBA001A601CBA00E9B192 /* Products */ = { 700 | isa = PBXGroup; 701 | children = ( 702 | 13B07F961A680F5B00A75B9A /* FirebaseText.app */, 703 | 00E356EE1AD99517003FC87E /* FirebaseTextTests.xctest */, 704 | 2D02E47B1E0B4A5D006451C7 /* FirebaseText-tvOS.app */, 705 | 2D02E4901E0B4A5D006451C7 /* FirebaseText-tvOSTests.xctest */, 706 | ); 707 | name = Products; 708 | sourceTree = ""; 709 | }; 710 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 711 | isa = PBXGroup; 712 | children = ( 713 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 714 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 715 | ); 716 | name = Products; 717 | sourceTree = ""; 718 | }; 719 | CD00960F760569698536F9D9 /* Pods */ = { 720 | isa = PBXGroup; 721 | children = ( 722 | B77310E20AAB04171AE87599 /* Pods-FirebaseText.debug.xcconfig */, 723 | AAC86DEB57BA1686D9AF542E /* Pods-FirebaseText.release.xcconfig */, 724 | 8DE5742D9B7E6423F6560117 /* Pods-FirebaseText-tvOS.debug.xcconfig */, 725 | 3C30C6E53846CE133699DC48 /* Pods-FirebaseText-tvOS.release.xcconfig */, 726 | 270CBB05771FF167D2573AC2 /* Pods-FirebaseText-tvOSTests.debug.xcconfig */, 727 | BD57D4A3142F42C53BA18369 /* Pods-FirebaseText-tvOSTests.release.xcconfig */, 728 | ECA4B967106608F9B82A0DCD /* Pods-FirebaseTextTests.debug.xcconfig */, 729 | A0C8F407708EB1B86CC283C0 /* Pods-FirebaseTextTests.release.xcconfig */, 730 | ); 731 | name = Pods; 732 | path = Pods; 733 | sourceTree = ""; 734 | }; 735 | /* End PBXGroup section */ 736 | 737 | /* Begin PBXNativeTarget section */ 738 | 00E356ED1AD99517003FC87E /* FirebaseTextTests */ = { 739 | isa = PBXNativeTarget; 740 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FirebaseTextTests" */; 741 | buildPhases = ( 742 | 58F672DCF3A01DD642077806 /* [CP] Check Pods Manifest.lock */, 743 | 00E356EA1AD99517003FC87E /* Sources */, 744 | 00E356EB1AD99517003FC87E /* Frameworks */, 745 | 00E356EC1AD99517003FC87E /* Resources */, 746 | ); 747 | buildRules = ( 748 | ); 749 | dependencies = ( 750 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 751 | ); 752 | name = FirebaseTextTests; 753 | productName = FirebaseTextTests; 754 | productReference = 00E356EE1AD99517003FC87E /* FirebaseTextTests.xctest */; 755 | productType = "com.apple.product-type.bundle.unit-test"; 756 | }; 757 | 13B07F861A680F5B00A75B9A /* FirebaseText */ = { 758 | isa = PBXNativeTarget; 759 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FirebaseText" */; 760 | buildPhases = ( 761 | 8F0EC86EE3B9E0ADAD64482A /* [CP] Check Pods Manifest.lock */, 762 | 13B07F871A680F5B00A75B9A /* Sources */, 763 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 764 | 13B07F8E1A680F5B00A75B9A /* Resources */, 765 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 766 | D17E723E2F504B108CF89611 /* [CP] Copy Pods Resources */, 767 | ); 768 | buildRules = ( 769 | ); 770 | dependencies = ( 771 | ); 772 | name = FirebaseText; 773 | productName = "Hello World"; 774 | productReference = 13B07F961A680F5B00A75B9A /* FirebaseText.app */; 775 | productType = "com.apple.product-type.application"; 776 | }; 777 | 2D02E47A1E0B4A5D006451C7 /* FirebaseText-tvOS */ = { 778 | isa = PBXNativeTarget; 779 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FirebaseText-tvOS" */; 780 | buildPhases = ( 781 | CF721853B8A610357E5BEA27 /* [CP] Check Pods Manifest.lock */, 782 | 2D02E4771E0B4A5D006451C7 /* Sources */, 783 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 784 | 2D02E4791E0B4A5D006451C7 /* Resources */, 785 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 786 | ); 787 | buildRules = ( 788 | ); 789 | dependencies = ( 790 | ); 791 | name = "FirebaseText-tvOS"; 792 | productName = "FirebaseText-tvOS"; 793 | productReference = 2D02E47B1E0B4A5D006451C7 /* FirebaseText-tvOS.app */; 794 | productType = "com.apple.product-type.application"; 795 | }; 796 | 2D02E48F1E0B4A5D006451C7 /* FirebaseText-tvOSTests */ = { 797 | isa = PBXNativeTarget; 798 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FirebaseText-tvOSTests" */; 799 | buildPhases = ( 800 | 2285BB38020FE05D236A48D4 /* [CP] Check Pods Manifest.lock */, 801 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 802 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 803 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 804 | ); 805 | buildRules = ( 806 | ); 807 | dependencies = ( 808 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 809 | ); 810 | name = "FirebaseText-tvOSTests"; 811 | productName = "FirebaseText-tvOSTests"; 812 | productReference = 2D02E4901E0B4A5D006451C7 /* FirebaseText-tvOSTests.xctest */; 813 | productType = "com.apple.product-type.bundle.unit-test"; 814 | }; 815 | /* End PBXNativeTarget section */ 816 | 817 | /* Begin PBXProject section */ 818 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 819 | isa = PBXProject; 820 | attributes = { 821 | LastUpgradeCheck = 940; 822 | ORGANIZATIONNAME = Facebook; 823 | TargetAttributes = { 824 | 00E356ED1AD99517003FC87E = { 825 | CreatedOnToolsVersion = 6.2; 826 | TestTargetID = 13B07F861A680F5B00A75B9A; 827 | }; 828 | 2D02E47A1E0B4A5D006451C7 = { 829 | CreatedOnToolsVersion = 8.2.1; 830 | ProvisioningStyle = Automatic; 831 | }; 832 | 2D02E48F1E0B4A5D006451C7 = { 833 | CreatedOnToolsVersion = 8.2.1; 834 | ProvisioningStyle = Automatic; 835 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 836 | }; 837 | }; 838 | }; 839 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FirebaseText" */; 840 | compatibilityVersion = "Xcode 3.2"; 841 | developmentRegion = English; 842 | hasScannedForEncodings = 0; 843 | knownRegions = ( 844 | en, 845 | Base, 846 | ); 847 | mainGroup = 83CBB9F61A601CBA00E9B192; 848 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 849 | projectDirPath = ""; 850 | projectReferences = ( 851 | { 852 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 853 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 854 | }, 855 | { 856 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 857 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 858 | }, 859 | { 860 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 861 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 862 | }, 863 | { 864 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 865 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 866 | }, 867 | { 868 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 869 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 870 | }, 871 | { 872 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 873 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 874 | }, 875 | { 876 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 877 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 878 | }, 879 | { 880 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 881 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 882 | }, 883 | { 884 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 885 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 886 | }, 887 | { 888 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 889 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 890 | }, 891 | { 892 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 893 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 894 | }, 895 | { 896 | ProductGroup = 146834001AC3E56700842450 /* Products */; 897 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 898 | }, 899 | ); 900 | projectRoot = ""; 901 | targets = ( 902 | 13B07F861A680F5B00A75B9A /* FirebaseText */, 903 | 00E356ED1AD99517003FC87E /* FirebaseTextTests */, 904 | 2D02E47A1E0B4A5D006451C7 /* FirebaseText-tvOS */, 905 | 2D02E48F1E0B4A5D006451C7 /* FirebaseText-tvOSTests */, 906 | ); 907 | }; 908 | /* End PBXProject section */ 909 | 910 | /* Begin PBXReferenceProxy section */ 911 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 912 | isa = PBXReferenceProxy; 913 | fileType = archive.ar; 914 | path = libRCTActionSheet.a; 915 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 916 | sourceTree = BUILT_PRODUCTS_DIR; 917 | }; 918 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 919 | isa = PBXReferenceProxy; 920 | fileType = archive.ar; 921 | path = libRCTGeolocation.a; 922 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 923 | sourceTree = BUILT_PRODUCTS_DIR; 924 | }; 925 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 926 | isa = PBXReferenceProxy; 927 | fileType = archive.ar; 928 | path = libRCTImage.a; 929 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 930 | sourceTree = BUILT_PRODUCTS_DIR; 931 | }; 932 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 933 | isa = PBXReferenceProxy; 934 | fileType = archive.ar; 935 | path = libRCTNetwork.a; 936 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 937 | sourceTree = BUILT_PRODUCTS_DIR; 938 | }; 939 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 940 | isa = PBXReferenceProxy; 941 | fileType = archive.ar; 942 | path = libRCTVibration.a; 943 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 944 | sourceTree = BUILT_PRODUCTS_DIR; 945 | }; 946 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 947 | isa = PBXReferenceProxy; 948 | fileType = archive.ar; 949 | path = libRCTSettings.a; 950 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 951 | sourceTree = BUILT_PRODUCTS_DIR; 952 | }; 953 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 954 | isa = PBXReferenceProxy; 955 | fileType = archive.ar; 956 | path = libRCTWebSocket.a; 957 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 958 | sourceTree = BUILT_PRODUCTS_DIR; 959 | }; 960 | 146834041AC3E56700842450 /* libReact.a */ = { 961 | isa = PBXReferenceProxy; 962 | fileType = archive.ar; 963 | path = libReact.a; 964 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 965 | sourceTree = BUILT_PRODUCTS_DIR; 966 | }; 967 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 968 | isa = PBXReferenceProxy; 969 | fileType = archive.ar; 970 | path = "libRCTBlob-tvOS.a"; 971 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 972 | sourceTree = BUILT_PRODUCTS_DIR; 973 | }; 974 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 975 | isa = PBXReferenceProxy; 976 | fileType = archive.ar; 977 | path = libfishhook.a; 978 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 979 | sourceTree = BUILT_PRODUCTS_DIR; 980 | }; 981 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 982 | isa = PBXReferenceProxy; 983 | fileType = archive.ar; 984 | path = "libfishhook-tvOS.a"; 985 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 986 | sourceTree = BUILT_PRODUCTS_DIR; 987 | }; 988 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 989 | isa = PBXReferenceProxy; 990 | fileType = archive.ar; 991 | path = libjsinspector.a; 992 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 993 | sourceTree = BUILT_PRODUCTS_DIR; 994 | }; 995 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 996 | isa = PBXReferenceProxy; 997 | fileType = archive.ar; 998 | path = "libjsinspector-tvOS.a"; 999 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 1000 | sourceTree = BUILT_PRODUCTS_DIR; 1001 | }; 1002 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 1003 | isa = PBXReferenceProxy; 1004 | fileType = archive.ar; 1005 | path = "libthird-party.a"; 1006 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 1007 | sourceTree = BUILT_PRODUCTS_DIR; 1008 | }; 1009 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 1010 | isa = PBXReferenceProxy; 1011 | fileType = archive.ar; 1012 | path = "libthird-party.a"; 1013 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 1014 | sourceTree = BUILT_PRODUCTS_DIR; 1015 | }; 1016 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 1017 | isa = PBXReferenceProxy; 1018 | fileType = archive.ar; 1019 | path = "libdouble-conversion.a"; 1020 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 1021 | sourceTree = BUILT_PRODUCTS_DIR; 1022 | }; 1023 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 1024 | isa = PBXReferenceProxy; 1025 | fileType = archive.ar; 1026 | path = "libdouble-conversion.a"; 1027 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 1028 | sourceTree = BUILT_PRODUCTS_DIR; 1029 | }; 1030 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 1031 | isa = PBXReferenceProxy; 1032 | fileType = archive.ar; 1033 | path = libprivatedata.a; 1034 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 1035 | sourceTree = BUILT_PRODUCTS_DIR; 1036 | }; 1037 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 1038 | isa = PBXReferenceProxy; 1039 | fileType = archive.ar; 1040 | path = "libprivatedata-tvOS.a"; 1041 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 1042 | sourceTree = BUILT_PRODUCTS_DIR; 1043 | }; 1044 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 1045 | isa = PBXReferenceProxy; 1046 | fileType = archive.ar; 1047 | path = "libRCTImage-tvOS.a"; 1048 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 1049 | sourceTree = BUILT_PRODUCTS_DIR; 1050 | }; 1051 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1052 | isa = PBXReferenceProxy; 1053 | fileType = archive.ar; 1054 | path = "libRCTLinking-tvOS.a"; 1055 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1056 | sourceTree = BUILT_PRODUCTS_DIR; 1057 | }; 1058 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1059 | isa = PBXReferenceProxy; 1060 | fileType = archive.ar; 1061 | path = "libRCTNetwork-tvOS.a"; 1062 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1063 | sourceTree = BUILT_PRODUCTS_DIR; 1064 | }; 1065 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1066 | isa = PBXReferenceProxy; 1067 | fileType = archive.ar; 1068 | path = "libRCTSettings-tvOS.a"; 1069 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1070 | sourceTree = BUILT_PRODUCTS_DIR; 1071 | }; 1072 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1073 | isa = PBXReferenceProxy; 1074 | fileType = archive.ar; 1075 | path = "libRCTText-tvOS.a"; 1076 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1077 | sourceTree = BUILT_PRODUCTS_DIR; 1078 | }; 1079 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1080 | isa = PBXReferenceProxy; 1081 | fileType = archive.ar; 1082 | path = "libRCTWebSocket-tvOS.a"; 1083 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1084 | sourceTree = BUILT_PRODUCTS_DIR; 1085 | }; 1086 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1087 | isa = PBXReferenceProxy; 1088 | fileType = archive.ar; 1089 | path = libReact.a; 1090 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1091 | sourceTree = BUILT_PRODUCTS_DIR; 1092 | }; 1093 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1094 | isa = PBXReferenceProxy; 1095 | fileType = archive.ar; 1096 | path = libyoga.a; 1097 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1098 | sourceTree = BUILT_PRODUCTS_DIR; 1099 | }; 1100 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1101 | isa = PBXReferenceProxy; 1102 | fileType = archive.ar; 1103 | path = libyoga.a; 1104 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1105 | sourceTree = BUILT_PRODUCTS_DIR; 1106 | }; 1107 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1108 | isa = PBXReferenceProxy; 1109 | fileType = archive.ar; 1110 | path = libcxxreact.a; 1111 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1112 | sourceTree = BUILT_PRODUCTS_DIR; 1113 | }; 1114 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1115 | isa = PBXReferenceProxy; 1116 | fileType = archive.ar; 1117 | path = libcxxreact.a; 1118 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1119 | sourceTree = BUILT_PRODUCTS_DIR; 1120 | }; 1121 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1122 | isa = PBXReferenceProxy; 1123 | fileType = archive.ar; 1124 | path = libjschelpers.a; 1125 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1126 | sourceTree = BUILT_PRODUCTS_DIR; 1127 | }; 1128 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1129 | isa = PBXReferenceProxy; 1130 | fileType = archive.ar; 1131 | path = libjschelpers.a; 1132 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1133 | sourceTree = BUILT_PRODUCTS_DIR; 1134 | }; 1135 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1136 | isa = PBXReferenceProxy; 1137 | fileType = archive.ar; 1138 | path = libRCTAnimation.a; 1139 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1140 | sourceTree = BUILT_PRODUCTS_DIR; 1141 | }; 1142 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1143 | isa = PBXReferenceProxy; 1144 | fileType = archive.ar; 1145 | path = libRCTAnimation.a; 1146 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1147 | sourceTree = BUILT_PRODUCTS_DIR; 1148 | }; 1149 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1150 | isa = PBXReferenceProxy; 1151 | fileType = archive.ar; 1152 | path = libRCTLinking.a; 1153 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1154 | sourceTree = BUILT_PRODUCTS_DIR; 1155 | }; 1156 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1157 | isa = PBXReferenceProxy; 1158 | fileType = archive.ar; 1159 | path = libRCTText.a; 1160 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1161 | sourceTree = BUILT_PRODUCTS_DIR; 1162 | }; 1163 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1164 | isa = PBXReferenceProxy; 1165 | fileType = archive.ar; 1166 | path = libRCTBlob.a; 1167 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1168 | sourceTree = BUILT_PRODUCTS_DIR; 1169 | }; 1170 | /* End PBXReferenceProxy section */ 1171 | 1172 | /* Begin PBXResourcesBuildPhase section */ 1173 | 00E356EC1AD99517003FC87E /* Resources */ = { 1174 | isa = PBXResourcesBuildPhase; 1175 | buildActionMask = 2147483647; 1176 | files = ( 1177 | ); 1178 | runOnlyForDeploymentPostprocessing = 0; 1179 | }; 1180 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1181 | isa = PBXResourcesBuildPhase; 1182 | buildActionMask = 2147483647; 1183 | files = ( 1184 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1185 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1186 | 47393A1107A24F26B6A3DCAC /* AntDesign.ttf in Resources */, 1187 | 808451D2E4CC4A4BA2890838 /* Entypo.ttf in Resources */, 1188 | 99BDC4CCB1AC4BEF84C835E7 /* EvilIcons.ttf in Resources */, 1189 | 2594B17D63CF4B628E97BC34 /* Feather.ttf in Resources */, 1190 | CDCBA385BED14EE7A3165811 /* FontAwesome.ttf in Resources */, 1191 | 8A078B2A39FA462A8155A7D6 /* FontAwesome5_Brands.ttf in Resources */, 1192 | 9ED3DFAB04C342F69D5C9820 /* FontAwesome5_Regular.ttf in Resources */, 1193 | 1D77609666FC4232B45880AC /* FontAwesome5_Solid.ttf in Resources */, 1194 | 305A04D4F9024957B9C7EEF8 /* Foundation.ttf in Resources */, 1195 | 20E1EDCFF73A4720B26FA707 /* Ionicons.ttf in Resources */, 1196 | 15F0BDF0679C4473ADEB4CBE /* MaterialCommunityIcons.ttf in Resources */, 1197 | DCB8102D0FE84D0AA714F3A0 /* MaterialIcons.ttf in Resources */, 1198 | FF633B4A47B44AF8AC0986F0 /* Octicons.ttf in Resources */, 1199 | F445010DEDBC41E2981B8E15 /* SimpleLineIcons.ttf in Resources */, 1200 | A03855E729724211B2BE7158 /* Zocial.ttf in Resources */, 1201 | ); 1202 | runOnlyForDeploymentPostprocessing = 0; 1203 | }; 1204 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1205 | isa = PBXResourcesBuildPhase; 1206 | buildActionMask = 2147483647; 1207 | files = ( 1208 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1209 | ); 1210 | runOnlyForDeploymentPostprocessing = 0; 1211 | }; 1212 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1213 | isa = PBXResourcesBuildPhase; 1214 | buildActionMask = 2147483647; 1215 | files = ( 1216 | ); 1217 | runOnlyForDeploymentPostprocessing = 0; 1218 | }; 1219 | /* End PBXResourcesBuildPhase section */ 1220 | 1221 | /* Begin PBXShellScriptBuildPhase section */ 1222 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1223 | isa = PBXShellScriptBuildPhase; 1224 | buildActionMask = 2147483647; 1225 | files = ( 1226 | ); 1227 | inputPaths = ( 1228 | ); 1229 | name = "Bundle React Native code and images"; 1230 | outputPaths = ( 1231 | ); 1232 | runOnlyForDeploymentPostprocessing = 0; 1233 | shellPath = /bin/sh; 1234 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1235 | }; 1236 | 2285BB38020FE05D236A48D4 /* [CP] Check Pods Manifest.lock */ = { 1237 | isa = PBXShellScriptBuildPhase; 1238 | buildActionMask = 2147483647; 1239 | files = ( 1240 | ); 1241 | inputFileListPaths = ( 1242 | ); 1243 | inputPaths = ( 1244 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 1245 | "${PODS_ROOT}/Manifest.lock", 1246 | ); 1247 | name = "[CP] Check Pods Manifest.lock"; 1248 | outputFileListPaths = ( 1249 | ); 1250 | outputPaths = ( 1251 | "$(DERIVED_FILE_DIR)/Pods-FirebaseText-tvOSTests-checkManifestLockResult.txt", 1252 | ); 1253 | runOnlyForDeploymentPostprocessing = 0; 1254 | shellPath = /bin/sh; 1255 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 1256 | showEnvVarsInLog = 0; 1257 | }; 1258 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1259 | isa = PBXShellScriptBuildPhase; 1260 | buildActionMask = 2147483647; 1261 | files = ( 1262 | ); 1263 | inputPaths = ( 1264 | ); 1265 | name = "Bundle React Native Code And Images"; 1266 | outputPaths = ( 1267 | ); 1268 | runOnlyForDeploymentPostprocessing = 0; 1269 | shellPath = /bin/sh; 1270 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1271 | }; 1272 | 58F672DCF3A01DD642077806 /* [CP] Check Pods Manifest.lock */ = { 1273 | isa = PBXShellScriptBuildPhase; 1274 | buildActionMask = 2147483647; 1275 | files = ( 1276 | ); 1277 | inputFileListPaths = ( 1278 | ); 1279 | inputPaths = ( 1280 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 1281 | "${PODS_ROOT}/Manifest.lock", 1282 | ); 1283 | name = "[CP] Check Pods Manifest.lock"; 1284 | outputFileListPaths = ( 1285 | ); 1286 | outputPaths = ( 1287 | "$(DERIVED_FILE_DIR)/Pods-FirebaseTextTests-checkManifestLockResult.txt", 1288 | ); 1289 | runOnlyForDeploymentPostprocessing = 0; 1290 | shellPath = /bin/sh; 1291 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 1292 | showEnvVarsInLog = 0; 1293 | }; 1294 | 8F0EC86EE3B9E0ADAD64482A /* [CP] Check Pods Manifest.lock */ = { 1295 | isa = PBXShellScriptBuildPhase; 1296 | buildActionMask = 2147483647; 1297 | files = ( 1298 | ); 1299 | inputFileListPaths = ( 1300 | ); 1301 | inputPaths = ( 1302 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 1303 | "${PODS_ROOT}/Manifest.lock", 1304 | ); 1305 | name = "[CP] Check Pods Manifest.lock"; 1306 | outputFileListPaths = ( 1307 | ); 1308 | outputPaths = ( 1309 | "$(DERIVED_FILE_DIR)/Pods-FirebaseText-checkManifestLockResult.txt", 1310 | ); 1311 | runOnlyForDeploymentPostprocessing = 0; 1312 | shellPath = /bin/sh; 1313 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 1314 | showEnvVarsInLog = 0; 1315 | }; 1316 | CF721853B8A610357E5BEA27 /* [CP] Check Pods Manifest.lock */ = { 1317 | isa = PBXShellScriptBuildPhase; 1318 | buildActionMask = 2147483647; 1319 | files = ( 1320 | ); 1321 | inputFileListPaths = ( 1322 | ); 1323 | inputPaths = ( 1324 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 1325 | "${PODS_ROOT}/Manifest.lock", 1326 | ); 1327 | name = "[CP] Check Pods Manifest.lock"; 1328 | outputFileListPaths = ( 1329 | ); 1330 | outputPaths = ( 1331 | "$(DERIVED_FILE_DIR)/Pods-FirebaseText-tvOS-checkManifestLockResult.txt", 1332 | ); 1333 | runOnlyForDeploymentPostprocessing = 0; 1334 | shellPath = /bin/sh; 1335 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 1336 | showEnvVarsInLog = 0; 1337 | }; 1338 | D17E723E2F504B108CF89611 /* [CP] Copy Pods Resources */ = { 1339 | isa = PBXShellScriptBuildPhase; 1340 | buildActionMask = 2147483647; 1341 | files = ( 1342 | ); 1343 | inputFileListPaths = ( 1344 | ); 1345 | inputPaths = ( 1346 | "${PODS_ROOT}/Target Support Files/Pods-FirebaseText/Pods-FirebaseText-resources.sh", 1347 | "${PODS_CONFIGURATION_BUILD_DIR}/GoogleMobileVision/GoogleMVTextDetectorResources.bundle", 1348 | ); 1349 | name = "[CP] Copy Pods Resources"; 1350 | outputFileListPaths = ( 1351 | ); 1352 | outputPaths = ( 1353 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleMVTextDetectorResources.bundle", 1354 | ); 1355 | runOnlyForDeploymentPostprocessing = 0; 1356 | shellPath = /bin/sh; 1357 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FirebaseText/Pods-FirebaseText-resources.sh\"\n"; 1358 | showEnvVarsInLog = 0; 1359 | }; 1360 | /* End PBXShellScriptBuildPhase section */ 1361 | 1362 | /* Begin PBXSourcesBuildPhase section */ 1363 | 00E356EA1AD99517003FC87E /* Sources */ = { 1364 | isa = PBXSourcesBuildPhase; 1365 | buildActionMask = 2147483647; 1366 | files = ( 1367 | 00E356F31AD99517003FC87E /* FirebaseTextTests.m in Sources */, 1368 | ); 1369 | runOnlyForDeploymentPostprocessing = 0; 1370 | }; 1371 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1372 | isa = PBXSourcesBuildPhase; 1373 | buildActionMask = 2147483647; 1374 | files = ( 1375 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1376 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1377 | ); 1378 | runOnlyForDeploymentPostprocessing = 0; 1379 | }; 1380 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1381 | isa = PBXSourcesBuildPhase; 1382 | buildActionMask = 2147483647; 1383 | files = ( 1384 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1385 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1386 | ); 1387 | runOnlyForDeploymentPostprocessing = 0; 1388 | }; 1389 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1390 | isa = PBXSourcesBuildPhase; 1391 | buildActionMask = 2147483647; 1392 | files = ( 1393 | 2DCD954D1E0B4F2C00145EB5 /* FirebaseTextTests.m in Sources */, 1394 | ); 1395 | runOnlyForDeploymentPostprocessing = 0; 1396 | }; 1397 | /* End PBXSourcesBuildPhase section */ 1398 | 1399 | /* Begin PBXTargetDependency section */ 1400 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1401 | isa = PBXTargetDependency; 1402 | target = 13B07F861A680F5B00A75B9A /* FirebaseText */; 1403 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1404 | }; 1405 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1406 | isa = PBXTargetDependency; 1407 | target = 2D02E47A1E0B4A5D006451C7 /* FirebaseText-tvOS */; 1408 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1409 | }; 1410 | /* End PBXTargetDependency section */ 1411 | 1412 | /* Begin PBXVariantGroup section */ 1413 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1414 | isa = PBXVariantGroup; 1415 | children = ( 1416 | 13B07FB21A68108700A75B9A /* Base */, 1417 | ); 1418 | name = LaunchScreen.xib; 1419 | path = FirebaseText; 1420 | sourceTree = ""; 1421 | }; 1422 | /* End PBXVariantGroup section */ 1423 | 1424 | /* Begin XCBuildConfiguration section */ 1425 | 00E356F61AD99517003FC87E /* Debug */ = { 1426 | isa = XCBuildConfiguration; 1427 | baseConfigurationReference = ECA4B967106608F9B82A0DCD /* Pods-FirebaseTextTests.debug.xcconfig */; 1428 | buildSettings = { 1429 | BUNDLE_LOADER = "$(TEST_HOST)"; 1430 | GCC_PREPROCESSOR_DEFINITIONS = ( 1431 | "DEBUG=1", 1432 | "$(inherited)", 1433 | ); 1434 | HEADER_SEARCH_PATHS = ( 1435 | "$(inherited)", 1436 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1437 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1438 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1439 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1440 | ); 1441 | INFOPLIST_FILE = FirebaseTextTests/Info.plist; 1442 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1443 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1444 | LIBRARY_SEARCH_PATHS = ( 1445 | "$(inherited)", 1446 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1447 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1448 | ); 1449 | OTHER_LDFLAGS = ( 1450 | "-ObjC", 1451 | "-lc++", 1452 | ); 1453 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1454 | PRODUCT_NAME = "$(TARGET_NAME)"; 1455 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FirebaseText.app/FirebaseText"; 1456 | }; 1457 | name = Debug; 1458 | }; 1459 | 00E356F71AD99517003FC87E /* Release */ = { 1460 | isa = XCBuildConfiguration; 1461 | baseConfigurationReference = A0C8F407708EB1B86CC283C0 /* Pods-FirebaseTextTests.release.xcconfig */; 1462 | buildSettings = { 1463 | BUNDLE_LOADER = "$(TEST_HOST)"; 1464 | COPY_PHASE_STRIP = NO; 1465 | HEADER_SEARCH_PATHS = ( 1466 | "$(inherited)", 1467 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1468 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1469 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1470 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1471 | ); 1472 | INFOPLIST_FILE = FirebaseTextTests/Info.plist; 1473 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1474 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1475 | LIBRARY_SEARCH_PATHS = ( 1476 | "$(inherited)", 1477 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1478 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1479 | ); 1480 | OTHER_LDFLAGS = ( 1481 | "-ObjC", 1482 | "-lc++", 1483 | ); 1484 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1485 | PRODUCT_NAME = "$(TARGET_NAME)"; 1486 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FirebaseText.app/FirebaseText"; 1487 | }; 1488 | name = Release; 1489 | }; 1490 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1491 | isa = XCBuildConfiguration; 1492 | baseConfigurationReference = B77310E20AAB04171AE87599 /* Pods-FirebaseText.debug.xcconfig */; 1493 | buildSettings = { 1494 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1495 | CURRENT_PROJECT_VERSION = 1; 1496 | DEAD_CODE_STRIPPING = NO; 1497 | HEADER_SEARCH_PATHS = ( 1498 | "$(inherited)", 1499 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1500 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1501 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1502 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1503 | ); 1504 | INFOPLIST_FILE = FirebaseText/Info.plist; 1505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1506 | OTHER_LDFLAGS = ( 1507 | "$(inherited)", 1508 | "-ObjC", 1509 | "-lc++", 1510 | ); 1511 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1512 | PRODUCT_NAME = FirebaseText; 1513 | VERSIONING_SYSTEM = "apple-generic"; 1514 | }; 1515 | name = Debug; 1516 | }; 1517 | 13B07F951A680F5B00A75B9A /* Release */ = { 1518 | isa = XCBuildConfiguration; 1519 | baseConfigurationReference = AAC86DEB57BA1686D9AF542E /* Pods-FirebaseText.release.xcconfig */; 1520 | buildSettings = { 1521 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1522 | CURRENT_PROJECT_VERSION = 1; 1523 | HEADER_SEARCH_PATHS = ( 1524 | "$(inherited)", 1525 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1526 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1527 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1528 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1529 | ); 1530 | INFOPLIST_FILE = FirebaseText/Info.plist; 1531 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1532 | OTHER_LDFLAGS = ( 1533 | "$(inherited)", 1534 | "-ObjC", 1535 | "-lc++", 1536 | ); 1537 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1538 | PRODUCT_NAME = FirebaseText; 1539 | VERSIONING_SYSTEM = "apple-generic"; 1540 | }; 1541 | name = Release; 1542 | }; 1543 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1544 | isa = XCBuildConfiguration; 1545 | baseConfigurationReference = 8DE5742D9B7E6423F6560117 /* Pods-FirebaseText-tvOS.debug.xcconfig */; 1546 | buildSettings = { 1547 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1548 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1549 | CLANG_ANALYZER_NONNULL = YES; 1550 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1551 | CLANG_WARN_INFINITE_RECURSION = YES; 1552 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1553 | DEBUG_INFORMATION_FORMAT = dwarf; 1554 | ENABLE_TESTABILITY = YES; 1555 | GCC_NO_COMMON_BLOCKS = YES; 1556 | HEADER_SEARCH_PATHS = ( 1557 | "$(inherited)", 1558 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1559 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1560 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1561 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1562 | ); 1563 | INFOPLIST_FILE = "FirebaseText-tvOS/Info.plist"; 1564 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1565 | LIBRARY_SEARCH_PATHS = ( 1566 | "$(inherited)", 1567 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1568 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1569 | ); 1570 | OTHER_LDFLAGS = ( 1571 | "-ObjC", 1572 | "-lc++", 1573 | ); 1574 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FirebaseText-tvOS"; 1575 | PRODUCT_NAME = "$(TARGET_NAME)"; 1576 | SDKROOT = appletvos; 1577 | TARGETED_DEVICE_FAMILY = 3; 1578 | TVOS_DEPLOYMENT_TARGET = 9.2; 1579 | }; 1580 | name = Debug; 1581 | }; 1582 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1583 | isa = XCBuildConfiguration; 1584 | baseConfigurationReference = 3C30C6E53846CE133699DC48 /* Pods-FirebaseText-tvOS.release.xcconfig */; 1585 | buildSettings = { 1586 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1587 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1588 | CLANG_ANALYZER_NONNULL = YES; 1589 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1590 | CLANG_WARN_INFINITE_RECURSION = YES; 1591 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1592 | COPY_PHASE_STRIP = NO; 1593 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1594 | GCC_NO_COMMON_BLOCKS = YES; 1595 | HEADER_SEARCH_PATHS = ( 1596 | "$(inherited)", 1597 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1598 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1599 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1600 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1601 | ); 1602 | INFOPLIST_FILE = "FirebaseText-tvOS/Info.plist"; 1603 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1604 | LIBRARY_SEARCH_PATHS = ( 1605 | "$(inherited)", 1606 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1607 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1608 | ); 1609 | OTHER_LDFLAGS = ( 1610 | "-ObjC", 1611 | "-lc++", 1612 | ); 1613 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FirebaseText-tvOS"; 1614 | PRODUCT_NAME = "$(TARGET_NAME)"; 1615 | SDKROOT = appletvos; 1616 | TARGETED_DEVICE_FAMILY = 3; 1617 | TVOS_DEPLOYMENT_TARGET = 9.2; 1618 | }; 1619 | name = Release; 1620 | }; 1621 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1622 | isa = XCBuildConfiguration; 1623 | baseConfigurationReference = 270CBB05771FF167D2573AC2 /* Pods-FirebaseText-tvOSTests.debug.xcconfig */; 1624 | buildSettings = { 1625 | BUNDLE_LOADER = "$(TEST_HOST)"; 1626 | CLANG_ANALYZER_NONNULL = YES; 1627 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1628 | CLANG_WARN_INFINITE_RECURSION = YES; 1629 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1630 | DEBUG_INFORMATION_FORMAT = dwarf; 1631 | ENABLE_TESTABILITY = YES; 1632 | GCC_NO_COMMON_BLOCKS = YES; 1633 | HEADER_SEARCH_PATHS = ( 1634 | "$(inherited)", 1635 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1636 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1637 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1638 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1639 | ); 1640 | INFOPLIST_FILE = "FirebaseText-tvOSTests/Info.plist"; 1641 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1642 | LIBRARY_SEARCH_PATHS = ( 1643 | "$(inherited)", 1644 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1645 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1646 | ); 1647 | OTHER_LDFLAGS = ( 1648 | "-ObjC", 1649 | "-lc++", 1650 | ); 1651 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FirebaseText-tvOSTests"; 1652 | PRODUCT_NAME = "$(TARGET_NAME)"; 1653 | SDKROOT = appletvos; 1654 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FirebaseText-tvOS.app/FirebaseText-tvOS"; 1655 | TVOS_DEPLOYMENT_TARGET = 10.1; 1656 | }; 1657 | name = Debug; 1658 | }; 1659 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1660 | isa = XCBuildConfiguration; 1661 | baseConfigurationReference = BD57D4A3142F42C53BA18369 /* Pods-FirebaseText-tvOSTests.release.xcconfig */; 1662 | buildSettings = { 1663 | BUNDLE_LOADER = "$(TEST_HOST)"; 1664 | CLANG_ANALYZER_NONNULL = YES; 1665 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1666 | CLANG_WARN_INFINITE_RECURSION = YES; 1667 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1668 | COPY_PHASE_STRIP = NO; 1669 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1670 | GCC_NO_COMMON_BLOCKS = YES; 1671 | HEADER_SEARCH_PATHS = ( 1672 | "$(inherited)", 1673 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1674 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1675 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1676 | "$(SRCROOT)/../node_modules/react-native-firebase-mlkit/ios", 1677 | ); 1678 | INFOPLIST_FILE = "FirebaseText-tvOSTests/Info.plist"; 1679 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1680 | LIBRARY_SEARCH_PATHS = ( 1681 | "$(inherited)", 1682 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1683 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1684 | ); 1685 | OTHER_LDFLAGS = ( 1686 | "-ObjC", 1687 | "-lc++", 1688 | ); 1689 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FirebaseText-tvOSTests"; 1690 | PRODUCT_NAME = "$(TARGET_NAME)"; 1691 | SDKROOT = appletvos; 1692 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FirebaseText-tvOS.app/FirebaseText-tvOS"; 1693 | TVOS_DEPLOYMENT_TARGET = 10.1; 1694 | }; 1695 | name = Release; 1696 | }; 1697 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1698 | isa = XCBuildConfiguration; 1699 | buildSettings = { 1700 | ALWAYS_SEARCH_USER_PATHS = NO; 1701 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1702 | CLANG_CXX_LIBRARY = "libc++"; 1703 | CLANG_ENABLE_MODULES = YES; 1704 | CLANG_ENABLE_OBJC_ARC = YES; 1705 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1706 | CLANG_WARN_BOOL_CONVERSION = YES; 1707 | CLANG_WARN_COMMA = YES; 1708 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1709 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1710 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1711 | CLANG_WARN_EMPTY_BODY = YES; 1712 | CLANG_WARN_ENUM_CONVERSION = YES; 1713 | CLANG_WARN_INFINITE_RECURSION = YES; 1714 | CLANG_WARN_INT_CONVERSION = YES; 1715 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1716 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1717 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1718 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1719 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1720 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1721 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1722 | CLANG_WARN_UNREACHABLE_CODE = YES; 1723 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1724 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1725 | COPY_PHASE_STRIP = NO; 1726 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1727 | ENABLE_TESTABILITY = YES; 1728 | GCC_C_LANGUAGE_STANDARD = gnu99; 1729 | GCC_DYNAMIC_NO_PIC = NO; 1730 | GCC_NO_COMMON_BLOCKS = YES; 1731 | GCC_OPTIMIZATION_LEVEL = 0; 1732 | GCC_PREPROCESSOR_DEFINITIONS = ( 1733 | "DEBUG=1", 1734 | "$(inherited)", 1735 | ); 1736 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1737 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1738 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1739 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1740 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1741 | GCC_WARN_UNUSED_FUNCTION = YES; 1742 | GCC_WARN_UNUSED_VARIABLE = YES; 1743 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1744 | MTL_ENABLE_DEBUG_INFO = YES; 1745 | ONLY_ACTIVE_ARCH = YES; 1746 | SDKROOT = iphoneos; 1747 | }; 1748 | name = Debug; 1749 | }; 1750 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1751 | isa = XCBuildConfiguration; 1752 | buildSettings = { 1753 | ALWAYS_SEARCH_USER_PATHS = NO; 1754 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1755 | CLANG_CXX_LIBRARY = "libc++"; 1756 | CLANG_ENABLE_MODULES = YES; 1757 | CLANG_ENABLE_OBJC_ARC = YES; 1758 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1759 | CLANG_WARN_BOOL_CONVERSION = YES; 1760 | CLANG_WARN_COMMA = YES; 1761 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1762 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1763 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1764 | CLANG_WARN_EMPTY_BODY = YES; 1765 | CLANG_WARN_ENUM_CONVERSION = YES; 1766 | CLANG_WARN_INFINITE_RECURSION = YES; 1767 | CLANG_WARN_INT_CONVERSION = YES; 1768 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1769 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1770 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1771 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1772 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1773 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1774 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1775 | CLANG_WARN_UNREACHABLE_CODE = YES; 1776 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1777 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1778 | COPY_PHASE_STRIP = YES; 1779 | ENABLE_NS_ASSERTIONS = NO; 1780 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1781 | GCC_C_LANGUAGE_STANDARD = gnu99; 1782 | GCC_NO_COMMON_BLOCKS = YES; 1783 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1784 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1785 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1786 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1787 | GCC_WARN_UNUSED_FUNCTION = YES; 1788 | GCC_WARN_UNUSED_VARIABLE = YES; 1789 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1790 | MTL_ENABLE_DEBUG_INFO = NO; 1791 | SDKROOT = iphoneos; 1792 | VALIDATE_PRODUCT = YES; 1793 | }; 1794 | name = Release; 1795 | }; 1796 | /* End XCBuildConfiguration section */ 1797 | 1798 | /* Begin XCConfigurationList section */ 1799 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FirebaseTextTests" */ = { 1800 | isa = XCConfigurationList; 1801 | buildConfigurations = ( 1802 | 00E356F61AD99517003FC87E /* Debug */, 1803 | 00E356F71AD99517003FC87E /* Release */, 1804 | ); 1805 | defaultConfigurationIsVisible = 0; 1806 | defaultConfigurationName = Release; 1807 | }; 1808 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FirebaseText" */ = { 1809 | isa = XCConfigurationList; 1810 | buildConfigurations = ( 1811 | 13B07F941A680F5B00A75B9A /* Debug */, 1812 | 13B07F951A680F5B00A75B9A /* Release */, 1813 | ); 1814 | defaultConfigurationIsVisible = 0; 1815 | defaultConfigurationName = Release; 1816 | }; 1817 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FirebaseText-tvOS" */ = { 1818 | isa = XCConfigurationList; 1819 | buildConfigurations = ( 1820 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1821 | 2D02E4981E0B4A5E006451C7 /* Release */, 1822 | ); 1823 | defaultConfigurationIsVisible = 0; 1824 | defaultConfigurationName = Release; 1825 | }; 1826 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FirebaseText-tvOSTests" */ = { 1827 | isa = XCConfigurationList; 1828 | buildConfigurations = ( 1829 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1830 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1831 | ); 1832 | defaultConfigurationIsVisible = 0; 1833 | defaultConfigurationName = Release; 1834 | }; 1835 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FirebaseText" */ = { 1836 | isa = XCConfigurationList; 1837 | buildConfigurations = ( 1838 | 83CBBA201A601CBA00E9B192 /* Debug */, 1839 | 83CBBA211A601CBA00E9B192 /* Release */, 1840 | ); 1841 | defaultConfigurationIsVisible = 0; 1842 | defaultConfigurationName = Release; 1843 | }; 1844 | /* End XCConfigurationList section */ 1845 | }; 1846 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1847 | } 1848 | -------------------------------------------------------------------------------- /ios/FirebaseText.xcodeproj/xcshareddata/xcschemes/FirebaseText-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/FirebaseText.xcodeproj/xcshareddata/xcschemes/FirebaseText.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/FirebaseText.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/FirebaseText/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/FirebaseText/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | #import 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 20 | moduleName:@"FirebaseText" 21 | initialProperties:nil]; 22 | 23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 24 | 25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 26 | UIViewController *rootViewController = [UIViewController new]; 27 | rootViewController.view = rootView; 28 | self.window.rootViewController = rootViewController; 29 | [self.window makeKeyAndVisible]; 30 | return YES; 31 | } 32 | 33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 34 | { 35 | #if DEBUG 36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 37 | #else 38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 39 | #endif 40 | } 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /ios/FirebaseText/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/FirebaseText/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/FirebaseText/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/FirebaseText/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | FirebaseText 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSAppTransportSecurity 44 | 45 | NSAllowsArbitraryLoads 46 | 47 | NSExceptionDomains 48 | 49 | localhost 50 | 51 | NSExceptionAllowsInsecureHTTPLoads 52 | 53 | 54 | 55 | 56 | UIAppFonts 57 | 58 | AntDesign.ttf 59 | Entypo.ttf 60 | EvilIcons.ttf 61 | Feather.ttf 62 | FontAwesome.ttf 63 | FontAwesome5_Brands.ttf 64 | FontAwesome5_Regular.ttf 65 | FontAwesome5_Solid.ttf 66 | Foundation.ttf 67 | Ionicons.ttf 68 | MaterialCommunityIcons.ttf 69 | MaterialIcons.ttf 70 | Octicons.ttf 71 | SimpleLineIcons.ttf 72 | Zocial.ttf 73 | 74 | 75 | 76 | NSCameraUsageDescription 77 | Your message to user when the camera is accessed for the first time 78 | 79 | NSPhotoLibraryUsageDescription 80 | Your message to user when the photo library is accessed for the first time 81 | 82 | 83 | -------------------------------------------------------------------------------- /ios/FirebaseText/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/FirebaseTextTests/FirebaseTextTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface FirebaseTextTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation FirebaseTextTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /ios/FirebaseTextTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CLIENT_ID 6 | 173425513255-hciji61787hon98b7kr88979mk414f3v.apps.googleusercontent.com 7 | REVERSED_CLIENT_ID 8 | com.googleusercontent.apps.173425513255-hciji61787hon98b7kr88979mk414f3v 9 | API_KEY 10 | AIzaSyBfnujkaMOnw7JAPaXr6Mc-M2i1PQ6Zfww 11 | GCM_SENDER_ID 12 | 173425513255 13 | PLIST_VERSION 14 | 1 15 | BUNDLE_ID 16 | org.reactjs.native.example.FirebaseText 17 | PROJECT_ID 18 | reactnativeml 19 | STORAGE_BUCKET 20 | reactnativeml.appspot.com 21 | IS_ADS_ENABLED 22 | 23 | IS_ANALYTICS_ENABLED 24 | 25 | IS_APPINVITE_ENABLED 26 | 27 | IS_GCM_ENABLED 28 | 29 | IS_SIGNIN_ENABLED 30 | 31 | GOOGLE_APP_ID 32 | 1:173425513255:ios:7e33d94651632bb0 33 | DATABASE_URL 34 | https://reactnativeml.firebaseio.com 35 | 36 | -------------------------------------------------------------------------------- /ios/PodFile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'FirebaseText' do 5 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks 6 | # use_frameworks! 7 | 8 | pod 'FirebaseCore' 9 | pod 'Firebase/MLVision' 10 | pod 'Firebase/MLVisionTextModel' 11 | pod 'Firebase/MLVisionBarcodeModel' 12 | 13 | # Pods for FirebaseText 14 | 15 | target 'FirebaseTextTests' do 16 | inherit! :search_paths 17 | # Pods for testing 18 | end 19 | 20 | end 21 | 22 | target 'FirebaseText-tvOS' do 23 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks 24 | # use_frameworks! 25 | 26 | # Pods for FirebaseText-tvOS 27 | 28 | target 'FirebaseText-tvOSTests' do 29 | inherit! :search_paths 30 | # Pods for testing 31 | end 32 | 33 | end 34 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Firebase/CoreOnly (5.19.0): 3 | - FirebaseCore (= 5.4.0) 4 | - Firebase/MLVision (5.19.0): 5 | - Firebase/CoreOnly 6 | - FirebaseMLVision (= 0.15.0) 7 | - Firebase/MLVisionBarcodeModel (5.19.0): 8 | - Firebase/CoreOnly 9 | - FirebaseMLVisionBarcodeModel (= 0.15.0) 10 | - Firebase/MLVisionTextModel (5.19.0): 11 | - Firebase/CoreOnly 12 | - FirebaseMLVisionTextModel (= 0.15.0) 13 | - FirebaseCore (5.4.0): 14 | - GoogleUtilities/Environment (~> 5.2) 15 | - GoogleUtilities/Logger (~> 5.2) 16 | - FirebaseInstanceID (3.8.0): 17 | - FirebaseCore (~> 5.2) 18 | - GoogleUtilities/Environment (~> 5.2) 19 | - GoogleUtilities/UserDefaults (~> 5.2) 20 | - FirebaseMLCommon (0.15.0): 21 | - FirebaseCore (~> 5.4) 22 | - FirebaseInstanceID (~> 3.8) 23 | - GoogleUtilities/UserDefaults (~> 5.3) 24 | - GTMSessionFetcher/Core (~> 1.1) 25 | - FirebaseMLVision (0.15.0): 26 | - FirebaseCore (~> 5.4) 27 | - FirebaseMLCommon (~> 0.15) 28 | - GoogleAPIClientForREST/Core (~> 1.3) 29 | - GoogleAPIClientForREST/Vision (~> 1.3) 30 | - GoogleMobileVision/Detector (~> 1.4) 31 | - FirebaseMLVisionBarcodeModel (0.15.0): 32 | - GoogleMobileVision/BarcodeDetector (~> 1.4) 33 | - FirebaseMLVisionTextModel (0.15.0): 34 | - GoogleMobileVision/TextDetector (~> 1.4) 35 | - GoogleAPIClientForREST/Core (1.3.8): 36 | - GTMSessionFetcher (>= 1.1.7) 37 | - GoogleAPIClientForREST/Vision (1.3.8): 38 | - GoogleAPIClientForREST/Core 39 | - GTMSessionFetcher (>= 1.1.7) 40 | - GoogleMobileVision/BarcodeDetector (1.5.0): 41 | - GoogleMobileVision/Detector (~> 1.5) 42 | - GoogleMobileVision/Detector (1.5.0): 43 | - GoogleToolboxForMac/Logger (~> 2.1) 44 | - "GoogleToolboxForMac/NSData+zlib (~> 2.1)" 45 | - GTMSessionFetcher/Core (~> 1.1) 46 | - Protobuf (~> 3.1) 47 | - GoogleMobileVision/TextDetector (1.5.0): 48 | - GoogleMobileVision/Detector (~> 1.5) 49 | - GoogleToolboxForMac/Defines (2.2.0) 50 | - GoogleToolboxForMac/Logger (2.2.0): 51 | - GoogleToolboxForMac/Defines (= 2.2.0) 52 | - "GoogleToolboxForMac/NSData+zlib (2.2.0)": 53 | - GoogleToolboxForMac/Defines (= 2.2.0) 54 | - GoogleUtilities/Environment (5.5.0) 55 | - GoogleUtilities/Logger (5.5.0): 56 | - GoogleUtilities/Environment 57 | - GoogleUtilities/UserDefaults (5.5.0): 58 | - GoogleUtilities/Logger 59 | - GTMSessionFetcher (1.2.1): 60 | - GTMSessionFetcher/Full (= 1.2.1) 61 | - GTMSessionFetcher/Core (1.2.1) 62 | - GTMSessionFetcher/Full (1.2.1): 63 | - GTMSessionFetcher/Core (= 1.2.1) 64 | - Protobuf (3.7.0) 65 | 66 | DEPENDENCIES: 67 | - Firebase/MLVision 68 | - Firebase/MLVisionBarcodeModel 69 | - Firebase/MLVisionTextModel 70 | - FirebaseCore 71 | 72 | SPEC REPOS: 73 | https://github.com/cocoapods/specs.git: 74 | - Firebase 75 | - FirebaseCore 76 | - FirebaseInstanceID 77 | - FirebaseMLCommon 78 | - FirebaseMLVision 79 | - FirebaseMLVisionBarcodeModel 80 | - FirebaseMLVisionTextModel 81 | - GoogleAPIClientForREST 82 | - GoogleMobileVision 83 | - GoogleToolboxForMac 84 | - GoogleUtilities 85 | - GTMSessionFetcher 86 | - Protobuf 87 | 88 | SPEC CHECKSUMS: 89 | Firebase: c60d49e9c2630875a96207d15e2affb8364996d1 90 | FirebaseCore: 22a79a961c3951ef2f77b67bfbc99e454247b319 91 | FirebaseInstanceID: cf488df2f4b79782f0e430b04a0e17c0aa7979b2 92 | FirebaseMLCommon: 192c49ec584f1fb559747f1da8052441158b04d7 93 | FirebaseMLVision: 257d9f1eaac1565f4dac67adf8b76805fa2a9a80 94 | FirebaseMLVisionBarcodeModel: cd84fe257bc02ac93beffc9b9d650d935977a5b1 95 | FirebaseMLVisionTextModel: 8094f552d742bea9ca7ec0fc9164e11ce6de9fc8 96 | GoogleAPIClientForREST: 5447a194eae517986cafe6421a5330b80b820591 97 | GoogleMobileVision: a1f93108b3527d67339e2de80e1db76645f9e8b9 98 | GoogleToolboxForMac: ff31605b7d66400dcec09bed5861689aebadda4d 99 | GoogleUtilities: 6481e6318c5fcabaaa8513ef8120f329055d7c10 100 | GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca 101 | Protobuf: 7a877b7f3e5964e3fce995e2eb323dbc6831bb5a 102 | 103 | PODFILE CHECKSUM: 2be21a3a3cdba00186bd1627ca74adb493e9879b 104 | 105 | COCOAPODS: 1.6.1 106 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirebaseText", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest", 8 | "lint": "eslint ." 9 | }, 10 | "dependencies": { 11 | "jsdom": "^14.0.0", 12 | "prop-types": "^15.7.2", 13 | "react": "16.8.3", 14 | "react-native": "0.59.3", 15 | "react-native-camera": "^2.0.2", 16 | "react-native-firebase-mlkit": "^0.6.2", 17 | "react-native-gesture-handler": "^1.1.0", 18 | "react-native-vector-icons": "^6.4.2", 19 | "react-navigation": "^3.5.1", 20 | "uuid": "^3.3.2", 21 | "styled-components": "^4.2.0" 22 | }, 23 | "devDependencies": { 24 | "@babel/core": "^7.4.0", 25 | "@babel/runtime": "^7.4.2", 26 | "@react-native-community/eslint-config": "^0.0.3", 27 | "babel-jest": "^24.5.0", 28 | "enzyme": "^3.9.0", 29 | "enzyme-adapter-react-16": "^1.11.2", 30 | "enzyme-react-16-adapter-setup": "^0.1.0", 31 | "eslint": "^5.15.3", 32 | "jest": "^24.5.0", 33 | "jest-enzyme": "^7.0.2", 34 | "metro-react-native-babel-preset": "^0.53.1", 35 | "react-test-renderer": "16.8.3" 36 | }, 37 | "jest": { 38 | "preset": "react-native", 39 | "setupFilesAfterEnv": [ 40 | "./node_modules/jest-enzyme/lib/index.js" 41 | ], 42 | "setupFiles": [ 43 | "enzyme-react-16-adapter-setup" 44 | ], 45 | "snapshotSerializers": [ 46 | "enzyme-to-json/serializer" 47 | ], 48 | "transform": { 49 | "^.+\\.js$": "/node_modules/react-native/jest/preprocessor.js" 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/config/jest/setupTests.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "react-native"; 3 | import "jest-enzyme"; 4 | import Adapter from "enzyme-adapter-react-16"; 5 | import Enzyme from "enzyme"; 6 | 7 | /** 8 | * Set up DOM in node.js environment for Enzyme to mount to 9 | */ 10 | const { JSDOM } = require("jsdom"); 11 | 12 | const jsdom = new JSDOM(""); 13 | const { window } = jsdom; 14 | 15 | function copyProps(src, target) { 16 | Object.defineProperties(target, { 17 | ...Object.getOwnPropertyDescriptors(src), 18 | ...Object.getOwnPropertyDescriptors(target) 19 | }); 20 | } 21 | 22 | global.window = window; 23 | global.document = window.document; 24 | global.navigator = { 25 | userAgent: "node.js", 26 | }; 27 | copyProps(window, global); 28 | 29 | /** 30 | * Set up Enzyme to mount to DOM, simulate events, 31 | * and inspect the DOM in tests. 32 | */ 33 | Enzyme.configure({ adapter: new Adapter() }); 34 | 35 | const originalConsoleError = console.error; 36 | console.error = message => { 37 | // see: https://jestjs.io/docs/en/tutorial-react.html#snapshot-testing-with-mocks-enzyme-and-react-16 38 | // see https://github.com/Root-App/react-native-mock-render/issues/6 39 | if (message.startsWith("Warning:")) { 40 | return; 41 | } 42 | 43 | originalConsoleError(message); 44 | }; -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | import MainNavigator from './routes'; 4 | 5 | export default class App extends Component { 6 | 7 | render() { 8 | 9 | return ( 10 | 11 | 12 | 13 | ); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/pages/AuthLoadingScreen.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { createStackNavigator, createAppContainer, StackActions, NavigationActions } from 'react-navigation'; 3 | 4 | import { View, Text, AsyncStorage, ActivityIndicator } from 'react-native'; 5 | 6 | export default class AuthLoadingScreen extends Component { 7 | 8 | static navigationOptions = { 9 | 10 | header: null 11 | 12 | } 13 | 14 | state = { 15 | 16 | userChecked: false, 17 | userLogged: false, 18 | 19 | } 20 | 21 | async componentDidMount() { 22 | 23 | const username = await AsyncStorage.getItem('@FirebaseText:username'); 24 | 25 | await this.appLoaded(username); 26 | 27 | if(this.state.userLogged == true) { 28 | 29 | const resetAction = StackActions.reset ({ 30 | 31 | index: 0, 32 | actions: [ 33 | 34 | NavigationActions.navigate({ routeName: 'Main' }), 35 | 36 | ] 37 | 38 | }); 39 | 40 | this.props.navigation.dispatch(resetAction); 41 | 42 | 43 | } else { 44 | 45 | const resetAction = StackActions.reset ({ 46 | 47 | index: 0, 48 | actions: [ 49 | 50 | NavigationActions.navigate({ routeName: 'Welcome' }), 51 | 52 | ] 53 | 54 | }); 55 | 56 | this.props.navigation.dispatch(resetAction); 57 | 58 | } 59 | 60 | } 61 | 62 | appLoaded = (username) => { 63 | 64 | this.setState({ 65 | 66 | userChecked: true, 67 | userLogged: !!username, 68 | 69 | }) 70 | 71 | } 72 | 73 | render() { 74 | 75 | if(!this.state.userChecked) return null; 76 | 77 | return ( 78 | 79 | 80 | 81 | 82 | 83 | ); 84 | } 85 | 86 | } -------------------------------------------------------------------------------- /src/pages/Main/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import PropTypes from 'prop-types'; 3 | 4 | import { View, Text, StyleSheet, Modal, TouchableOpacity, ScrollView, Dimensions } from 'react-native'; 5 | import { RNCamera } from 'react-native-camera'; 6 | 7 | import RNMlKit from 'react-native-firebase-mlkit'; 8 | 9 | import uuidv1 from 'uuid/v1'; 10 | 11 | const { height, width } = Dimensions.get('window') 12 | 13 | export default class Main extends Component { 14 | 15 | static navigationOptions = { 16 | 17 | header: null, 18 | 19 | }; 20 | 21 | state = { 22 | 23 | text: [], 24 | modalVisible: false, 25 | // loading: false, 26 | // error: null, 27 | 28 | } 29 | 30 | takePicture = async () => { 31 | 32 | const options = { quality: 0.8, base64: true, skipProcessing: true, forceUpOrientation: true }; 33 | const data = await this.camera.takePictureAsync(options); 34 | 35 | // for on-device (Supports Android and iOS) 36 | 37 | const deviceTextRecognition = await RNMlKit.deviceTextRecognition(data.uri); 38 | console.log('Text Recognition On-Device', deviceTextRecognition); 39 | 40 | this.setState({ text: deviceTextRecognition, modalVisible: true }) 41 | 42 | // alert('Texto identificado ' + JSON.stringify(deviceTextRecognition)) 43 | 44 | // for cloud (At the moment supports only Android) 45 | 46 | // const cloudTextRecognition = await RNMlKit.cloudTextRecognition(data.uri); 47 | // console.log('Text Recognition Cloud', cloudTextRecognition); 48 | 49 | }; 50 | 51 | handleCancel = () => { 52 | 53 | this.setState({ modalVisible: false }) 54 | 55 | } 56 | 57 | renderModal = () => { 58 | 59 | const { modalVisible, text } = this.state 60 | 61 | return ( 62 | 63 | 64 | 65 | 66 | 67 | {text.map(blockVision => ( 68 | 69 | 70 | Element Text : {blockVision.elementText} 71 | Line Text : {blockVision.lineText} 72 | Result Text : {blockVision.resultText} 73 | Block Text : {blockVision.blockText} 74 | 75 | 76 | ))} 77 | 78 | 79 | 80 | Fechar 81 | 82 | 83 | 84 | 85 | ) 86 | 87 | } 88 | 89 | render() { 90 | return ( 91 | 92 | 93 | { 95 | this.camera = camera; 96 | }} 97 | style = {styles.preview} 98 | type={RNCamera.Constants.Type.back} 99 | autoFocus={RNCamera.Constants.AutoFocus.on} 100 | flashMode={RNCamera.Constants.FlashMode.off} 101 | captureAudio={false} 102 | permissionDialogTitle={"Permission to use camera"} 103 | permissionDialogMessage={ 104 | "We need your permission to use your camera phone" 105 | } 106 | /> 107 | {this.renderModal()} 108 | 109 | 110 | SNAP 111 | 112 | 113 | 114 | 115 | ) 116 | } 117 | 118 | }; 119 | 120 | Main.propTypes = { 121 | 122 | navigation: PropTypes.object 123 | 124 | } 125 | 126 | const styles = StyleSheet.create({ 127 | container: { 128 | flex: 1, 129 | flexDirection: 'column', 130 | backgroundColor: 'black', 131 | }, 132 | preview: { 133 | flex: 1, 134 | justifyContent: 'flex-end', 135 | alignItems: 'center', 136 | }, 137 | capture: { 138 | flex: 0, 139 | backgroundColor: '#fff', 140 | borderRadius: 5, 141 | padding: 15, 142 | paddingHorizontal: 20, 143 | alignSelf: 'center', 144 | margin: 20, 145 | }, 146 | buttonText: { 147 | fontSize: 14, 148 | }, 149 | textContainer: { 150 | marginBottom: 30, 151 | }, 152 | modalView: { 153 | backgroundColor: '#FFF', 154 | justifyContent: 'center', 155 | alignItems: 'center' 156 | } 157 | }); -------------------------------------------------------------------------------- /src/pages/Welcome/__tests__/Welcome.spec.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { shallow } from 'enzyme'; 3 | import renderer from 'react-test-renderer'; 4 | 5 | import Welcome from '../index'; 6 | 7 | const props = { 8 | 9 | navigation: { 10 | 11 | navigate: jest.fn(), 12 | dispatch: jest.fn() 13 | 14 | } 15 | 16 | }; 17 | 18 | it('The default state is correctly', () => { 19 | const wrapper = shallow(); 20 | 21 | expect(wrapper.state().username).toBeDefined(); 22 | expect(wrapper.state().loading).toBeDefined(); 23 | expect(wrapper.state().errorMessage).toBeDefined(); 24 | 25 | }); 26 | 27 | it('saveUser is called', () => { 28 | const wrapper = shallow(); 29 | 30 | const spy = jest.spyOn(wrapper.instance(), 'saveUser'); 31 | 32 | wrapper.update(); 33 | wrapper.instance().saveUser(); 34 | 35 | expect(spy).toHaveBeenCalled(); 36 | }); 37 | 38 | it('signIn is called', () => { 39 | const wrapper = shallow(); 40 | 41 | const spy = jest.spyOn(wrapper.instance(), 'signIn'); 42 | 43 | wrapper.update(); 44 | wrapper.instance().signIn(); 45 | 46 | expect(spy).toHaveBeenCalled(); 47 | }); 48 | 49 | it('signIn was called when button click', () => { 50 | const spy = jest.spyOn(Welcome.prototype, 'signIn'); 51 | 52 | const wrapper = shallow(); 53 | 54 | wrapper.setState({ loading: false }) 55 | 56 | wrapper.update(); 57 | 58 | // wrapper.find('TouchableOpacity').simulate('click'); 59 | 60 | const nextButton = wrapper.find('TouchableOpacity').first(); 61 | 62 | // Enzyme usually allows wrapper.simulate() alternatively, but this doesn't support 'press' events. 63 | nextButton.props().onPress(); 64 | 65 | expect(spy).toHaveBeenCalled(); 66 | 67 | }); 68 | 69 | it('saveUser is called in signIn', () => { 70 | const wrapper = shallow(); 71 | 72 | wrapper.setState({ username: 'asassasdds' }) 73 | 74 | const spy = jest.spyOn(wrapper.instance(), 'saveUser'); 75 | 76 | wrapper.update(); 77 | 78 | wrapper.instance().saveUser() 79 | 80 | expect(spy).toHaveBeenCalled(); 81 | 82 | }); 83 | 84 | it('renders correctly', () => { 85 | const wrapper = shallow(); 86 | 87 | expect(wrapper).toMatchSnapshot() 88 | }); -------------------------------------------------------------------------------- /src/pages/Welcome/__tests__/__snapshots__/Welcome.spec.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`renders correctly 1`] = ` 4 | 15 | 20 | 30 | Bem-vindo 31 | 32 | 43 | Para continuar, precisamos que você informe seu usuário 44 | 45 | 52 | 69 | 84 | 93 | Prosseguir 94 | 95 | 96 | 97 | 98 | `; 99 | -------------------------------------------------------------------------------- /src/pages/Welcome/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { StackActions, NavigationActions } from 'react-navigation'; 3 | import PropTypes from 'prop-types'; 4 | 5 | import { StatusBar, ActivityIndicator, AsyncStorage } from 'react-native'; 6 | 7 | import { Container, Title, TextInformation, Error, Form, Input, Button, ButtonText} from './styles' 8 | 9 | export default class Welcome extends Component { 10 | 11 | constructor() { 12 | super(); 13 | 14 | this.signIn = this.signIn.bind(this); 15 | } 16 | 17 | static navigationOptions = { 18 | 19 | header: null, 20 | 21 | }; 22 | 23 | 24 | static propTypes = { 25 | 26 | navigation: PropTypes.shape({ 27 | dispatch: PropTypes.func, 28 | }).isRequired, 29 | 30 | }; 31 | 32 | state = { 33 | 34 | username: '', 35 | loading: false, 36 | errorMessage: null, 37 | 38 | } 39 | 40 | saveUser = async (username) => { 41 | 42 | await AsyncStorage.setItem('@FirebaseText:username', username) 43 | 44 | } 45 | 46 | async signIn () { 47 | 48 | const { username } = this.state; 49 | 50 | if(username.length === 0 ) return; 51 | 52 | this.setState({ loading: true }); 53 | 54 | try { 55 | 56 | await this.saveUser(username); 57 | 58 | const resetAction = StackActions.reset ({ 59 | 60 | index: 0, 61 | actions: [ 62 | 63 | NavigationActions.navigate({ routeName: 'Main' }), 64 | 65 | ] 66 | 67 | }); 68 | 69 | this.props.navigation.dispatch(resetAction); 70 | 71 | } catch(err) { 72 | 73 | this.setState({ loading: false, errorMessage: 'Usuário não existe' }); 74 | 75 | } 76 | 77 | } 78 | 79 | render() { 80 | return ( 81 | 82 | 83 | 84 | 85 | 86 | Bem-vindo 87 | 88 | 89 | Para continuar, precisamos que você informe seu usuário 90 | 91 | 92 | 93 | { !!this.state.errorMessage 94 | && {this.state.errorMessage} } 95 | 96 |
97 | 98 | this.setState({ username })} 106 | 107 | /> 108 | 109 | 116 | 117 |
118 | 119 |
120 | 121 | ) 122 | } 123 | }; -------------------------------------------------------------------------------- /src/pages/Welcome/styles.js: -------------------------------------------------------------------------------- 1 | import styled from 'styled-components/native'; 2 | 3 | export const Container = styled.View` 4 | display: flex; 5 | flex: 1; 6 | background-color: #444A5A; 7 | padding: 40px; 8 | justify-content: center; 9 | align-items: stretch; 10 | `; 11 | 12 | export const Title = styled.Text` 13 | text-align: center; 14 | color: #FFFFFF; 15 | font-size: 24px; 16 | font-weight: bold; 17 | `; 18 | 19 | export const TextInformation = styled.Text` 20 | text-align: center; 21 | margin-top: 10px; 22 | font-size: 14px; 23 | color: #DDDDDD; 24 | line-height: 21px; 25 | `; 26 | 27 | export const Error = styled.Text` 28 | color: #E37A7A; 29 | text-align: center; 30 | margin-top: 10px; 31 | `; 32 | 33 | export const Form = styled.View` 34 | margin-top: 20px; 35 | `; 36 | 37 | export const Input = styled.TextInput` 38 | background-color: #FFFFFF; 39 | border-radius: 3px; 40 | height: 44px; 41 | /* 42 | 43 | top and bottom paddings are 0px 44 | right and left paddings are 20px 45 | */ 46 | /* paddingHorizontal: metrics.basePadding */ 47 | /* paddingHorizontal: 20 */ 48 | padding: 0px 20px; 49 | `; 50 | 51 | export const Button = styled.TouchableOpacity` 52 | background-color: #7A91CA; 53 | border-radius: 3px; 54 | height: 44px; 55 | padding: 0px 20px; 56 | margin-top: 10px; 57 | justify-content: center; 58 | align-items: center; 59 | `; 60 | 61 | export const ButtonText = styled.Text` 62 | color: #FFFFFF; 63 | font-weight: bold; 64 | font-size: 14px; 65 | `; 66 | -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- 1 | import { createStackNavigator, createAppContainer } from 'react-navigation'; 2 | 3 | import Welcome from './pages/Welcome'; 4 | import Main from './pages/Main'; 5 | import AuthLoadingScreen from './pages/AuthLoadingScreen'; 6 | 7 | const createNavigator = createStackNavigator ( 8 | 9 | { 10 | 11 | AuthLoadingScreen: { screen: AuthLoadingScreen }, 12 | 13 | Welcome: { screen: Welcome }, 14 | 15 | Main: { screen: Main }, 16 | 17 | }, 18 | 19 | ); 20 | 21 | const MainNavigator = createAppContainer(createNavigator); 22 | 23 | export default MainNavigator; -------------------------------------------------------------------------------- /src/styles/globalStyles.js: -------------------------------------------------------------------------------- 1 | 2 | import { Dimensions } from 'react-native'; 3 | 4 | const { width, height } = Dimensions.get('window'); 5 | 6 | const styles = { 7 | 8 | box: { 9 | 10 | backgroundColor: '#FFF', 11 | borderRadius: 3, 12 | padding: 20, 13 | 14 | }, 15 | 16 | metrics: { 17 | 18 | basePadding: 20, 19 | baseMargin: 10, 20 | baseRadius: 3, 21 | screenWidth: width < height ? width : height, 22 | screenHeight: width < height ? height : width, 23 | 24 | }, 25 | 26 | colors: { 27 | 28 | white: '#FFF', 29 | lighter: '#EEE', 30 | light: '#DDD', 31 | regular: '#999', 32 | dark: '#666', 33 | darker: '#333', 34 | black: '#000', 35 | 36 | primary: '#7A91CA', 37 | secondary: '#444A5A', 38 | success: '#9DCA83', 39 | danger: '#E37A7A', 40 | 41 | transparent: 'transparent', 42 | darkTransparent: 'rgba(0, 0, 0, 0.6)', 43 | whiteTransparent: 'rgba(0, 0, 0, 0.3)', 44 | 45 | } 46 | 47 | 48 | } 49 | 50 | export default styles -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- 1 | import globalStyles from './globalStyles' 2 | 3 | export { globalStyles } --------------------------------------------------------------------------------