├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── 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 │ │ ├── index.android.bundle │ │ └── index.android.bundle.meta │ │ ├── java │ │ └── com │ │ │ └── reactnavigationexample │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnativeelements_src_rating_images_bell.png │ │ ├── node_modules_reactnativeelements_src_rating_images_heart.png │ │ ├── node_modules_reactnativeelements_src_rating_images_rocket.png │ │ ├── node_modules_reactnativeelements_src_rating_images_star.png │ │ ├── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── node_modules_reactnavigationstack_dist_views_assets_backiconmask.png │ │ └── src_images_viewfinder.png │ │ ├── drawable-xhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── 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 ├── docs ├── Base.md ├── react-navigation.md ├── scan.md └── 开发经验汇总.md ├── index.js ├── ios ├── reactNavigationExample-tvOS │ └── Info.plist ├── reactNavigationExample-tvOSTests │ └── Info.plist ├── reactNavigationExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactNavigationExample-tvOS.xcscheme │ │ └── reactNavigationExample.xcscheme ├── reactNavigationExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactNavigationExampleTests │ ├── Info.plist │ └── reactNavigationExampleTests.m ├── package-lock.json ├── package.json ├── readme.md ├── src ├── NavigationService.js ├── images │ └── viewfinder.png ├── index.js ├── router │ ├── AuthStack.js │ ├── MainStack.js │ ├── ModalStack.js │ ├── TabNavigator.js │ └── index.js ├── screens │ ├── HlsDemo.js │ ├── LCDemo.js │ ├── Loading.js │ ├── Login.js │ ├── Main.js │ ├── MainChildScreen.js │ ├── ModalScreen.js │ ├── ScanDemo.js │ ├── ScanResult.js │ ├── UserCenter.js │ ├── UserChildScreen.js │ └── UserSecondChildScreen.js ├── store │ └── index.js └── utils │ ├── ScreenUtils.js │ ├── index.js │ └── lc_fetch.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"], 3 | "plugins": [ 4 | "transform-decorators-legacy" 5 | ], 6 | "env": { 7 | "development": { 8 | "plugins": ["transform-react-jsx-source"] 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.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 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | 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' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | [version] 54 | ^0.67.0 55 | -------------------------------------------------------------------------------- /.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 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 zgatrying 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /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 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 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 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.reactnavigationexample", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.reactnavigationexample", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /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 26 98 | buildToolsVersion '26.0.2' 99 | 100 | defaultConfig { 101 | applicationId "com.reactnavigationexample" 102 | minSdkVersion 16 103 | targetSdkVersion 26 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile project(':react-native-my-fancy-library') 141 | compile project(':react-native-svg') 142 | compile project(':react-native-vector-icons') 143 | compile project(':react-native-camera') 144 | compile fileTree(dir: "libs", include: ["*.jar"]) 145 | compile "com.android.support:support-v4:27.1.0" 146 | compile "com.android.support:appcompat-v7:27.1.0" 147 | compile "com.facebook.react:react-native:+" // From node_modules 148 | } 149 | 150 | // Run this once to be able to run the application with BUCK 151 | // puts all compile dependencies into folder libs for BUCK to use 152 | task copyDownloadableDepsToLibs(type: Copy) { 153 | from configurations.compile 154 | into 'libs' 155 | } 156 | -------------------------------------------------------------------------------- /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 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/assets/index.android.bundle.meta -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationexample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnavigationexample; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "reactNavigationExample"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationexample/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnavigationexample; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.reactlibrary.RNMyFancyLibraryPackage; 7 | import com.horcrux.svg.SvgPackage; 8 | import com.oblador.vectoricons.VectorIconsPackage; 9 | import com.facebook.react.ReactNativeHost; 10 | import com.facebook.react.ReactPackage; 11 | import org.reactnative.camera.RNCameraPackage; 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 RNMyFancyLibraryPackage(), 31 | new SvgPackage(), 32 | new VectorIconsPackage(), 33 | new RNCameraPackage() 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/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_bell.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_heart.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_rocket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeelements_src_rating_images_star.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_viewfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-mdpi/src_images_viewfinder.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/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/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | reactNavigationExample 6 | 7 | -------------------------------------------------------------------------------- /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 | repositories { 5 | jcenter() 6 | google() 7 | } 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.0.0' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | mavenLocal() 19 | jcenter() 20 | maven { 21 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 22 | url "$rootDir/../node_modules/react-native/android" 23 | } 24 | maven { url "https://jitpack.io" } 25 | maven { url "https://maven.google.com" } 26 | google() 27 | } 28 | } 29 | 30 | ext { 31 | compileSdkVersion = 26 32 | targetSdkVersion = 26 33 | buildToolsVersion = "26.0.2" 34 | googlePlayServicesVersion = "12.0.1" 35 | supportLibVersion = "27.1.0" 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 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Nov 08 16:04:36 CST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 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 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /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 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 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 Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /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 = 'reactNavigationExample' 2 | include ':react-native-my-fancy-library' 3 | project(':react-native-my-fancy-library').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-my-fancy-library/android') 4 | include ':react-native-svg' 5 | project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android') 6 | include ':react-native-vector-icons' 7 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 8 | 9 | include ':app' 10 | include ':react-native-camera' 11 | project(':react-native-camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera/android') 12 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNavigationExample", 3 | "displayName": "reactNavigationExample" 4 | } -------------------------------------------------------------------------------- /docs/Base.md: -------------------------------------------------------------------------------- 1 | # ReactNative基础 2 | 3 | 本文档目标是解决以下问题: 4 | 5 | 1. 如何解决适配问题,react-native的中不带单位的尺寸数值表示的是什么,如何与设计稿尺寸px单位对应? 6 | 7 | ## 适配问题 8 | 9 | 涉及到的相关API 10 | 11 | - Dimensions 12 | - Platform 13 | 14 | 使用Platform判断当前os为安卓还是ios设备 15 | ```js 16 | const isAndroid = Platform.OS === 'android'; 17 | ``` 18 | 19 | 使用Dimensions获取当前设备尺寸 20 | ```js 21 | const { 22 | height, 23 | width 24 | } = Dimensions.get('window'); 25 | ``` 26 | 27 | 对于Dimensions.get的参数的两个值(window与screen)的补充说明:[stackoverflow的回答](https://stackoverflow.com/questions/44978804/whats-the-difference-between-window-and-screen-in-the-dimensions-api) 28 | >Screen and window dimensions are different on android 29 | 30 | >window: reports width/height without the soft menu bar 31 | 32 | >screen: reports entire screen's width/height 33 | 34 | 通常传的参数是window。 35 | 36 | 兼容全面屏手机 37 | ```js 38 | //整个屏幕的高度。全面屏手机上,这个值才是真实的屏幕高度 39 | export const SCREEN_WIDTH = Dimensions.get("screen").width; 40 | export const SCREEN_HEIGHT = Dimensions.get("screen").height; 41 | 42 | // 可显示内容的宽度 43 | export const DEVICE_WIDTH = SCREEN_HEIGHT / SCREEN_WIDTH > 16 / 9 ? Dimensions.get("screen").width : Dimensions.get("window").width; 44 | export const DEVICE_HEIGHT = SCREEN_HEIGHT / SCREEN_WIDTH > 16 / 9 ? Dimensions.get("screen").height : Dimensions.get("window").height; 45 | ``` 46 | 47 | 设备尺寸的补充说明: 48 | 49 | iphone设备尺寸 50 | ```js 51 | const X_WIDTH = 375; 52 | const X_HEIGHT = 812; 53 | const XSMAX_WIDTH = 414; 54 | const XSMAX_HEIGHT = 896; 55 | const PAD_WIDTH = 768; 56 | const PAD_HEIGHT = 1024; 57 | ``` 58 | 59 | ### 尺寸适配 60 | 61 | >React Native中的尺寸都是无单位的,表示的是与设备像素密度无关的逻辑像素点。 62 | 63 | RN的尺寸使用的是dp(device-independent pixel)单位,而通常UI提供给我们的设计稿单位是px,需要写一个函数将px单位转换为dp单位。 64 | 65 | ```js 66 | import {PixelRatio} from 'react-native'; 67 | const dp2px = dp=>PixelRatio.getPixelSizeForLayoutSize(dp); 68 | const px2dp = px=>PixelRatio.roundToNearestPixel(px); 69 | let pxRatio = PixelRatio.get(); 70 | let scale = 1 / pxRatio; 71 | ``` 72 | 73 | 假设设计稿一个View的宽高为200,测试用设备的像素密度为2, 则在RN中实际使用的尺寸应该为 74 | ```js 75 | { 76 | width: px2dp(200), //100 77 | height: px2dp(200), //100 78 | } 79 | ``` 80 | 其实就是px单位数值除以设备像素密度。 81 | 82 | ### 分辨率适配 83 | 84 | 两种方案:`宽度不变,高度自适应`与`高度不变,宽度自适应`。 85 | 86 | ### 状态栏适配 87 | 88 | **顶部状态栏** 89 | 90 | 安卓与ios设备组件布局的开始位置是不同的。ios设备从手机窗口顶端的左侧开始布局,顶部状态栏就像悬浮在组件上一样。而安卓设备则是从顶部状态栏正下方位置开始布局。 91 | 92 | **底部区域** 93 | 94 | 主要考虑适配iphoneX。 95 | 96 | ### 解决设备适配可用的第三方库 97 | 98 | - [react-native-safe-area-view](https://github.com/react-community/react-native-safe-area-view)适配不同设备顶部与底部状态栏,能够使app的内容始终在安全可预期的范围内显示。 99 | -------------------------------------------------------------------------------- /docs/react-navigation.md: -------------------------------------------------------------------------------- 1 | # react-navigation库实践经验汇总 -------------------------------------------------------------------------------- /docs/scan.md: -------------------------------------------------------------------------------- 1 | # react-native-camera库实践经验 2 | 3 | 目的:实现扫一扫功能。 4 | 5 | 第一步:引入依赖 6 | 7 | ``` 8 | yarn add react-native-camera 9 | ``` 10 | 11 | 第二步:导入android与ios平台配置 12 | 13 | ``` 14 | react-native link react-native-camera 15 | ``` 16 | 17 | 第三步:添加android与ios设备摄像头的访问权限 18 | 19 | ios/{appName}/info.plist文件内添加 20 | ``` 21 | NSCameraUsageDescription 22 | 需要使用您的相机扫描二维码,用来{目的} 23 | ``` 24 | ps:ios提交App Store审核前,这个“目的”一定要填详细不然审核会不通过。 25 | 26 | android/*/AndroidManifest.xml文件内添加 27 | ``` 28 | 29 | ``` 30 | 31 | 示例代码参考src/screens/ScanDemo.js文件。 32 | 33 | 心得: 34 | 35 | 1. 示例代码中的_onBarCodeRead方法会在设备识别二维码后不等你处理结束会不断地触发,如何避免这个问题? 36 | 37 | 解决方案:添加一个布尔锁,第一次触发_onBarCodeRead时锁住,在扫码结果页面触发`componentWillUnmount`生命周期时才释放。 38 | 39 | 2. 一开始react-native-camera库,在Android Studio上build时通常会报错提示依赖的com.android.support库有冲突,可以在app/build.gradle的dependencies中添加以下内容 40 | ``` 41 | compile "com.android.support:support-v4:27.1.0" 42 | compile "com.android.support:appcompat-v7:27.1.0" 43 | ``` 44 | 45 | 根据实际情况修改版本号。 46 | -------------------------------------------------------------------------------- /docs/开发经验汇总.md: -------------------------------------------------------------------------------- 1 | # ReactNative爬坑经验汇总 2 | 3 | ## 针对Android Studio各种编译错误屡试不爽的解决方式 4 | 5 | 1. 在Android Studio中,打开Build菜单,点击执行Clean Project操作; 6 | 2. 然后执行Rebuild Project操作; 7 | 8 | ## Android Studio build失败的解决方法 9 | 10 | 导致编译失败的原因有很多,主要还是要针对编译错误信息,去Google或者自行调试。罗列几个成功解决build错误的方法: 11 | 12 | 1. 删除`android/app/build`文件夹,重新尝试build。 13 | 14 | ## react-native android measesure undefiend 15 | 16 | github相关issue: [measure not returning values unless element has onLayout property](https://github.com/facebook/react-native/issues/3282) 17 | 18 | View组件设置collapsable={false} 19 | 20 | ## 实现本地文件上传到服务器 21 | 22 | 使用axios库的实现方法: 23 | 24 | ```js 25 | /** 26 | * 接口参数:a:String 27 | b:String 28 | resource:File 29 | * */ 30 | let resource = { 31 | uri: `file://${文件路径}`, 32 | type: 'multipart/form-data', 33 | name: `${文件名}.${后缀}` 34 | }; 35 | let data = { 36 | a: '1', 37 | b: '2', 38 | resource: resource 39 | }; 40 | let formData = new FormData(); 41 | Object.keys(data).map(key => { 42 | formData.append(key, data[key]) 43 | }); 44 | axios({ 45 | url: `url`, 46 | headers: { 47 | 'Content-Type': 'multipart/form-data', 48 | }, 49 | method: 'POST', 50 | data: formData 51 | }) 52 | ``` 53 | 54 | ## react-native 无法访问从网络上下载的图片文件 55 | 56 | 访问下载到本地的图片方式 57 | ```js 58 | 59 | ``` 60 | 61 | ## react-native 在android平台真机调试时无法在Chrome浏览器中debug 62 | 63 | 解决方法:将地址栏的`http://{your localnetwork ip address}:8081/debugger-ui/`改为`http://localhost:8081/debugger-ui/`后重试。 64 | 65 | ps: 如果你是使用的Android Studio方式启动的,可能需要在Android Studio 执行stop操作,才能正常debug。 66 | 67 | ## react-native-fs android 读写本地文件失败 68 | 69 | 解决方法:android平台读写文件时需要在文件路径前缀`file:`,ios平台不需要该前缀。 70 | 71 | ```js 72 | import RNFS from 'react-native-fs'; 73 | 74 | //附带一提:目前成功实现文件存取功能使用的是DocumentDirectoryPath的访问路径。任何读写操作使用的路径都需要前缀readDirPath。 75 | //exp: 76 | //const readDirPath = RNFS.DocumentDirectoryPath; 77 | 78 | export function writeFile(path, content) { 79 | if(isAndroid) { 80 | return RNFS.writeFile(`file:${path}`, content, 'utf8') 81 | } else { 82 | return RNFS.writeFile(path, content, 'utf8') 83 | } 84 | } 85 | export function readFile(path) { 86 | if(isAndroid) { 87 | return RNFS.readFile(`file:${path}`) 88 | } else { 89 | return RNFS.readFile(path) 90 | } 91 | } 92 | ``` 93 | 94 | ## react-native-swiper 在外部改变index后滑动该组件显示的item顺序错乱。 95 | 96 | 库版本:v1.5.13 97 | 98 | 待整理。 99 | 100 | ## react-native-swipeout  101 | 102 | 库版本:v2.3.4 103 | 104 | 问题:从右往左拖拽组件时,拖拽距离会超过按钮的宽度,且多次拖拽后左侧部分内容会变小无法正常显示。 105 | 106 | 如何限制拖拽距离小于等于按钮宽度的方法:修改源码中的`_handlePanResponderMove`方法。 107 | 108 | ```js 109 | if (posX < 0 && this.props.right) { 110 | posX = posX < - rightWidth ? - rightWidth : posX; 111 | this.setState({ contentPos: Math.min(posX, 0) }); 112 | } else if (posX > 0 && this.props.left) { 113 | posX = posX > leftWidth ? leftWidth : posX; 114 | this.setState({ contentPos: Math.max(posX, 0) }); 115 | }; 116 | ``` 117 | 118 | 左侧视图组件的宽度设置为`width: 100%;`可以解决拖拽后视图无法正常显示的问题。 119 | 120 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** @format */ 2 | 3 | import {AppRegistry} from 'react-native'; 4 | import App from './src'; 5 | import {name as appName} from './app.json'; 6 | 7 | AppRegistry.registerComponent(appName, () => App); 8 | -------------------------------------------------------------------------------- /ios/reactNavigationExample-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/reactNavigationExample-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/reactNavigationExample.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 /* reactNavigationExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactNavigationExampleTests.m */; }; 16 | 06F0D59B1A3E46FB958ED61A /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9438FAF86C9C406798EBFD3A /* FontAwesome.ttf */; }; 17 | 0D35F7080F404416BD548F9F /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BCD95149A7034DCDAC6A657E /* AntDesign.ttf */; }; 18 | 10376C020C0F4EC0818B057B /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F3AB0C1058214D98A11EB7AD /* EvilIcons.ttf */; }; 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 | 1562218AB4564926949975DA /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 53F61BA80B614B50986B9439 /* Feather.ttf */; }; 29 | 1AE9C6D6C5644B40AA44EDD9 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 75178FE7F1D3462A8BEB4477 /* FontAwesome5_Regular.ttf */; }; 30 | 282829CB99284774BEA85C3A /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 12A85504D398429CBDADE463 /* Octicons.ttf */; }; 31 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 32 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 33 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 34 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 35 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 36 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 37 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 38 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 39 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 40 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 41 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 42 | 2DCD954D1E0B4F2C00145EB5 /* reactNavigationExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactNavigationExampleTests.m */; }; 43 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 44 | 3F13D59D8D724430BC385DBC /* libRNMyFancyLibrary.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B60D4674F3241AAB1FFD321 /* libRNMyFancyLibrary.a */; }; 45 | 4E856D35DD6A4016A877087D /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8F270ECA5FF1419EAD4F97F4 /* Zocial.ttf */; }; 46 | 5C2893DB20F14B9F8D851B17 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C0A2068A823A4659B37BADC0 /* MaterialIcons.ttf */; }; 47 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 48 | 69FD4554680C4BA287278251 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 592DEB2AEF92499C832E8140 /* SimpleLineIcons.ttf */; }; 49 | 6BD6E29111BE4D469F141C69 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B478F9DBF90744859A93A04D /* FontAwesome5_Brands.ttf */; }; 50 | 805F668303434144AADA091F /* libRNSVG.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EC324D70C6BA4B9D9C6926C5 /* libRNSVG.a */; }; 51 | 81F638ACDD1045E4B9A49539 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FD5F8B925F874C4D9A2DAD25 /* FontAwesome5_Solid.ttf */; }; 52 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 53 | 9013E6500E9945B8956B1054 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F897C04886E74033B197E683 /* Entypo.ttf */; }; 54 | 939D2607C0454BCFAE32B279 /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DBC51C08F00409890634D99 /* libRNVectorIcons-tvOS.a */; }; 55 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 56 | AE69F076E5994081A6925E30 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 929AD64CB31E4E92B5176E3B /* MaterialCommunityIcons.ttf */; }; 57 | B4CF126D00254CE8B60331BD /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BA4C90DA085A4815A0E4472B /* libRNVectorIcons.a */; }; 58 | B4DAD9C105B34E8AAC722E68 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1E9EBD3DFFEF4FFB87CBB8AB /* Ionicons.ttf */; }; 59 | BAE0215B10AE451D91E09DB3 /* libRNSVG-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BC678546AF4641219374B1D1 /* libRNSVG-tvOS.a */; }; 60 | E2C99294473A4AF4B48BF032 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 40BBBD99CE3E41ADAC13D051 /* Foundation.ttf */; }; 61 | E66F8895A64A4A8D92C2BBAB /* libRNCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A6C0E9250EC041B0A6B554FE /* libRNCamera.a */; }; 62 | /* End PBXBuildFile section */ 63 | 64 | /* Begin PBXContainerItemProxy section */ 65 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 66 | isa = PBXContainerItemProxy; 67 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 68 | proxyType = 2; 69 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 70 | remoteInfo = RCTActionSheet; 71 | }; 72 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 73 | isa = PBXContainerItemProxy; 74 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 75 | proxyType = 2; 76 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 77 | remoteInfo = RCTGeolocation; 78 | }; 79 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 80 | isa = PBXContainerItemProxy; 81 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 82 | proxyType = 2; 83 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 84 | remoteInfo = RCTImage; 85 | }; 86 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 87 | isa = PBXContainerItemProxy; 88 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 89 | proxyType = 2; 90 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 91 | remoteInfo = RCTNetwork; 92 | }; 93 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 94 | isa = PBXContainerItemProxy; 95 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 96 | proxyType = 2; 97 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 98 | remoteInfo = RCTVibration; 99 | }; 100 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 101 | isa = PBXContainerItemProxy; 102 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 103 | proxyType = 1; 104 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 105 | remoteInfo = reactNavigationExample; 106 | }; 107 | 042759FE219EBB5E003683F0 /* PBXContainerItemProxy */ = { 108 | isa = PBXContainerItemProxy; 109 | containerPortal = F27EAD154FD246C899C8D6EA /* RNCamera.xcodeproj */; 110 | proxyType = 2; 111 | remoteGlobalIDString = 4107012F1ACB723B00C6AA39; 112 | remoteInfo = RNCamera; 113 | }; 114 | 04275A4421A250C9003683F0 /* PBXContainerItemProxy */ = { 115 | isa = PBXContainerItemProxy; 116 | containerPortal = F2BB4544C59A492AB84C27BA /* RNVectorIcons.xcodeproj */; 117 | proxyType = 2; 118 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 119 | remoteInfo = RNVectorIcons; 120 | }; 121 | 04275A4621A250C9003683F0 /* PBXContainerItemProxy */ = { 122 | isa = PBXContainerItemProxy; 123 | containerPortal = F2BB4544C59A492AB84C27BA /* RNVectorIcons.xcodeproj */; 124 | proxyType = 2; 125 | remoteGlobalIDString = A39873CE1EA65EE60051E01A; 126 | remoteInfo = "RNVectorIcons-tvOS"; 127 | }; 128 | 042F8F1321B7BD27002FD1E4 /* PBXContainerItemProxy */ = { 129 | isa = PBXContainerItemProxy; 130 | containerPortal = A51733102D434C8F86717400 /* RNMyFancyLibrary.xcodeproj */; 131 | proxyType = 2; 132 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 133 | remoteInfo = RNMyFancyLibrary; 134 | }; 135 | 0481BA4E21AE858300A124AF /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = FDA4AEFC8A9049509552EB83 /* RNSVG.xcodeproj */; 138 | proxyType = 2; 139 | remoteGlobalIDString = 0CF68AC11AF0540F00FF9E5C; 140 | remoteInfo = RNSVG; 141 | }; 142 | 0481BA5021AE858300A124AF /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = FDA4AEFC8A9049509552EB83 /* RNSVG.xcodeproj */; 145 | proxyType = 2; 146 | remoteGlobalIDString = 94DDAC5C1F3D024300EED511; 147 | remoteInfo = "RNSVG-tvOS"; 148 | }; 149 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 150 | isa = PBXContainerItemProxy; 151 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 152 | proxyType = 2; 153 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 154 | remoteInfo = RCTSettings; 155 | }; 156 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 157 | isa = PBXContainerItemProxy; 158 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 159 | proxyType = 2; 160 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 161 | remoteInfo = RCTWebSocket; 162 | }; 163 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 164 | isa = PBXContainerItemProxy; 165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 166 | proxyType = 2; 167 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 168 | remoteInfo = React; 169 | }; 170 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 171 | isa = PBXContainerItemProxy; 172 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 173 | proxyType = 1; 174 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 175 | remoteInfo = "reactNavigationExample-tvOS"; 176 | }; 177 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 178 | isa = PBXContainerItemProxy; 179 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 180 | proxyType = 2; 181 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 182 | remoteInfo = "RCTBlob-tvOS"; 183 | }; 184 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 185 | isa = PBXContainerItemProxy; 186 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 187 | proxyType = 2; 188 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 189 | remoteInfo = fishhook; 190 | }; 191 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 192 | isa = PBXContainerItemProxy; 193 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 194 | proxyType = 2; 195 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 196 | remoteInfo = "fishhook-tvOS"; 197 | }; 198 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 199 | isa = PBXContainerItemProxy; 200 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 201 | proxyType = 2; 202 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 203 | remoteInfo = jsinspector; 204 | }; 205 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 206 | isa = PBXContainerItemProxy; 207 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 208 | proxyType = 2; 209 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 210 | remoteInfo = "jsinspector-tvOS"; 211 | }; 212 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 213 | isa = PBXContainerItemProxy; 214 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 215 | proxyType = 2; 216 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 217 | remoteInfo = "third-party"; 218 | }; 219 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 220 | isa = PBXContainerItemProxy; 221 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 222 | proxyType = 2; 223 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 224 | remoteInfo = "third-party-tvOS"; 225 | }; 226 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 227 | isa = PBXContainerItemProxy; 228 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 229 | proxyType = 2; 230 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 231 | remoteInfo = "double-conversion"; 232 | }; 233 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 234 | isa = PBXContainerItemProxy; 235 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 236 | proxyType = 2; 237 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 238 | remoteInfo = "double-conversion-tvOS"; 239 | }; 240 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 241 | isa = PBXContainerItemProxy; 242 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 243 | proxyType = 2; 244 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 245 | remoteInfo = privatedata; 246 | }; 247 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 248 | isa = PBXContainerItemProxy; 249 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 250 | proxyType = 2; 251 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 252 | remoteInfo = "privatedata-tvOS"; 253 | }; 254 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 255 | isa = PBXContainerItemProxy; 256 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 257 | proxyType = 2; 258 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 259 | remoteInfo = "RCTImage-tvOS"; 260 | }; 261 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 262 | isa = PBXContainerItemProxy; 263 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 264 | proxyType = 2; 265 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 266 | remoteInfo = "RCTLinking-tvOS"; 267 | }; 268 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 269 | isa = PBXContainerItemProxy; 270 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 271 | proxyType = 2; 272 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 273 | remoteInfo = "RCTNetwork-tvOS"; 274 | }; 275 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 276 | isa = PBXContainerItemProxy; 277 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 278 | proxyType = 2; 279 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 280 | remoteInfo = "RCTSettings-tvOS"; 281 | }; 282 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 283 | isa = PBXContainerItemProxy; 284 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 285 | proxyType = 2; 286 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 287 | remoteInfo = "RCTText-tvOS"; 288 | }; 289 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 290 | isa = PBXContainerItemProxy; 291 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 292 | proxyType = 2; 293 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 294 | remoteInfo = "RCTWebSocket-tvOS"; 295 | }; 296 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 297 | isa = PBXContainerItemProxy; 298 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 299 | proxyType = 2; 300 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 301 | remoteInfo = "React-tvOS"; 302 | }; 303 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 304 | isa = PBXContainerItemProxy; 305 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 306 | proxyType = 2; 307 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 308 | remoteInfo = yoga; 309 | }; 310 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 311 | isa = PBXContainerItemProxy; 312 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 313 | proxyType = 2; 314 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 315 | remoteInfo = "yoga-tvOS"; 316 | }; 317 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 318 | isa = PBXContainerItemProxy; 319 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 320 | proxyType = 2; 321 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 322 | remoteInfo = cxxreact; 323 | }; 324 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 325 | isa = PBXContainerItemProxy; 326 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 327 | proxyType = 2; 328 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 329 | remoteInfo = "cxxreact-tvOS"; 330 | }; 331 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 332 | isa = PBXContainerItemProxy; 333 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 334 | proxyType = 2; 335 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 336 | remoteInfo = jschelpers; 337 | }; 338 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 339 | isa = PBXContainerItemProxy; 340 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 341 | proxyType = 2; 342 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 343 | remoteInfo = "jschelpers-tvOS"; 344 | }; 345 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 346 | isa = PBXContainerItemProxy; 347 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 348 | proxyType = 2; 349 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 350 | remoteInfo = RCTAnimation; 351 | }; 352 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 353 | isa = PBXContainerItemProxy; 354 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 355 | proxyType = 2; 356 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 357 | remoteInfo = "RCTAnimation-tvOS"; 358 | }; 359 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 360 | isa = PBXContainerItemProxy; 361 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 362 | proxyType = 2; 363 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 364 | remoteInfo = RCTLinking; 365 | }; 366 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 367 | isa = PBXContainerItemProxy; 368 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 369 | proxyType = 2; 370 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 371 | remoteInfo = RCTText; 372 | }; 373 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 374 | isa = PBXContainerItemProxy; 375 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 376 | proxyType = 2; 377 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 378 | remoteInfo = RCTBlob; 379 | }; 380 | /* End PBXContainerItemProxy section */ 381 | 382 | /* Begin PBXFileReference section */ 383 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 384 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 385 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 386 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 387 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 388 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 389 | 00E356EE1AD99517003FC87E /* reactNavigationExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = reactNavigationExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 390 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 391 | 00E356F21AD99517003FC87E /* reactNavigationExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reactNavigationExampleTests.m; sourceTree = ""; }; 392 | 12A85504D398429CBDADE463 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 393 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 394 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 395 | 13B07F961A680F5B00A75B9A /* reactNavigationExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactNavigationExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 396 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactNavigationExample/AppDelegate.h; sourceTree = ""; }; 397 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = reactNavigationExample/AppDelegate.m; sourceTree = ""; }; 398 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 399 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactNavigationExample/Images.xcassets; sourceTree = ""; }; 400 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactNavigationExample/Info.plist; sourceTree = ""; }; 401 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactNavigationExample/main.m; sourceTree = ""; }; 402 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 403 | 1B60D4674F3241AAB1FFD321 /* libRNMyFancyLibrary.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNMyFancyLibrary.a; sourceTree = ""; }; 404 | 1E9EBD3DFFEF4FFB87CBB8AB /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 405 | 2D02E47B1E0B4A5D006451C7 /* reactNavigationExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "reactNavigationExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 406 | 2D02E4901E0B4A5D006451C7 /* reactNavigationExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "reactNavigationExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 407 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 408 | 40BBBD99CE3E41ADAC13D051 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 409 | 53F61BA80B614B50986B9439 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 410 | 592DEB2AEF92499C832E8140 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 411 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 412 | 75178FE7F1D3462A8BEB4477 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; }; 413 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 414 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 415 | 8DBC51C08F00409890634D99 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; }; 416 | 8F270ECA5FF1419EAD4F97F4 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 417 | 929AD64CB31E4E92B5176E3B /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 418 | 9438FAF86C9C406798EBFD3A /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 419 | A51733102D434C8F86717400 /* RNMyFancyLibrary.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNMyFancyLibrary.xcodeproj; path = "../node_modules/react-native-my-fancy-library/ios/RNMyFancyLibrary.xcodeproj"; sourceTree = ""; }; 420 | A6C0E9250EC041B0A6B554FE /* libRNCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCamera.a; sourceTree = ""; }; 421 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 422 | B478F9DBF90744859A93A04D /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; 423 | BA4C90DA085A4815A0E4472B /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 424 | BC678546AF4641219374B1D1 /* libRNSVG-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = "libRNSVG-tvOS.a"; sourceTree = ""; }; 425 | BCD95149A7034DCDAC6A657E /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; }; 426 | C0A2068A823A4659B37BADC0 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 427 | EC324D70C6BA4B9D9C6926C5 /* libRNSVG.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSVG.a; sourceTree = ""; }; 428 | F27EAD154FD246C899C8D6EA /* RNCamera.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNCamera.xcodeproj; path = "../node_modules/react-native-camera/ios/RNCamera.xcodeproj"; sourceTree = ""; }; 429 | F2BB4544C59A492AB84C27BA /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 430 | F3AB0C1058214D98A11EB7AD /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 431 | F897C04886E74033B197E683 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 432 | FD5F8B925F874C4D9A2DAD25 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; }; 433 | FDA4AEFC8A9049509552EB83 /* RNSVG.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSVG.xcodeproj; path = "../node_modules/react-native-svg/ios/RNSVG.xcodeproj"; sourceTree = ""; }; 434 | /* End PBXFileReference section */ 435 | 436 | /* Begin PBXFrameworksBuildPhase section */ 437 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 438 | isa = PBXFrameworksBuildPhase; 439 | buildActionMask = 2147483647; 440 | files = ( 441 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 442 | ); 443 | runOnlyForDeploymentPostprocessing = 0; 444 | }; 445 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 446 | isa = PBXFrameworksBuildPhase; 447 | buildActionMask = 2147483647; 448 | files = ( 449 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 450 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 451 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 452 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 453 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 454 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 455 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 456 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 457 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 458 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 459 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 460 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 461 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 462 | E66F8895A64A4A8D92C2BBAB /* libRNCamera.a in Frameworks */, 463 | B4CF126D00254CE8B60331BD /* libRNVectorIcons.a in Frameworks */, 464 | 805F668303434144AADA091F /* libRNSVG.a in Frameworks */, 465 | 3F13D59D8D724430BC385DBC /* libRNMyFancyLibrary.a in Frameworks */, 466 | ); 467 | runOnlyForDeploymentPostprocessing = 0; 468 | }; 469 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 470 | isa = PBXFrameworksBuildPhase; 471 | buildActionMask = 2147483647; 472 | files = ( 473 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 474 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 475 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 476 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 477 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 478 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 479 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 480 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 481 | 939D2607C0454BCFAE32B279 /* libRNVectorIcons-tvOS.a in Frameworks */, 482 | BAE0215B10AE451D91E09DB3 /* libRNSVG-tvOS.a in Frameworks */, 483 | ); 484 | runOnlyForDeploymentPostprocessing = 0; 485 | }; 486 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 487 | isa = PBXFrameworksBuildPhase; 488 | buildActionMask = 2147483647; 489 | files = ( 490 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 491 | ); 492 | runOnlyForDeploymentPostprocessing = 0; 493 | }; 494 | /* End PBXFrameworksBuildPhase section */ 495 | 496 | /* Begin PBXGroup section */ 497 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 498 | isa = PBXGroup; 499 | children = ( 500 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 501 | ); 502 | name = Products; 503 | sourceTree = ""; 504 | }; 505 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 506 | isa = PBXGroup; 507 | children = ( 508 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 509 | ); 510 | name = Products; 511 | sourceTree = ""; 512 | }; 513 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 514 | isa = PBXGroup; 515 | children = ( 516 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 517 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 518 | ); 519 | name = Products; 520 | sourceTree = ""; 521 | }; 522 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 523 | isa = PBXGroup; 524 | children = ( 525 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 526 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 527 | ); 528 | name = Products; 529 | sourceTree = ""; 530 | }; 531 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 532 | isa = PBXGroup; 533 | children = ( 534 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 535 | ); 536 | name = Products; 537 | sourceTree = ""; 538 | }; 539 | 00E356EF1AD99517003FC87E /* reactNavigationExampleTests */ = { 540 | isa = PBXGroup; 541 | children = ( 542 | 00E356F21AD99517003FC87E /* reactNavigationExampleTests.m */, 543 | 00E356F01AD99517003FC87E /* Supporting Files */, 544 | ); 545 | path = reactNavigationExampleTests; 546 | sourceTree = ""; 547 | }; 548 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 549 | isa = PBXGroup; 550 | children = ( 551 | 00E356F11AD99517003FC87E /* Info.plist */, 552 | ); 553 | name = "Supporting Files"; 554 | sourceTree = ""; 555 | }; 556 | 0427558F21942409003683F0 /* Recovered References */ = { 557 | isa = PBXGroup; 558 | children = ( 559 | A6C0E9250EC041B0A6B554FE /* libRNCamera.a */, 560 | BA4C90DA085A4815A0E4472B /* libRNVectorIcons.a */, 561 | 8DBC51C08F00409890634D99 /* libRNVectorIcons-tvOS.a */, 562 | EC324D70C6BA4B9D9C6926C5 /* libRNSVG.a */, 563 | BC678546AF4641219374B1D1 /* libRNSVG-tvOS.a */, 564 | 1B60D4674F3241AAB1FFD321 /* libRNMyFancyLibrary.a */, 565 | ); 566 | name = "Recovered References"; 567 | sourceTree = ""; 568 | }; 569 | 042759D6219EBB5D003683F0 /* Products */ = { 570 | isa = PBXGroup; 571 | children = ( 572 | 042759FF219EBB5E003683F0 /* libRNCamera.a */, 573 | ); 574 | name = Products; 575 | sourceTree = ""; 576 | }; 577 | 04275A4021A250C9003683F0 /* Products */ = { 578 | isa = PBXGroup; 579 | children = ( 580 | 04275A4521A250C9003683F0 /* libRNVectorIcons.a */, 581 | 04275A4721A250C9003683F0 /* libRNVectorIcons-tvOS.a */, 582 | ); 583 | name = Products; 584 | sourceTree = ""; 585 | }; 586 | 042F8F1021B7BD27002FD1E4 /* Products */ = { 587 | isa = PBXGroup; 588 | children = ( 589 | 042F8F1421B7BD27002FD1E4 /* libRNMyFancyLibrary.a */, 590 | ); 591 | name = Products; 592 | sourceTree = ""; 593 | }; 594 | 0481BA4A21AE858200A124AF /* Products */ = { 595 | isa = PBXGroup; 596 | children = ( 597 | 0481BA4F21AE858300A124AF /* libRNSVG.a */, 598 | 0481BA5121AE858300A124AF /* libRNSVG-tvOS.a */, 599 | ); 600 | name = Products; 601 | sourceTree = ""; 602 | }; 603 | 139105B71AF99BAD00B5F7CC /* Products */ = { 604 | isa = PBXGroup; 605 | children = ( 606 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 607 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 608 | ); 609 | name = Products; 610 | sourceTree = ""; 611 | }; 612 | 139FDEE71B06529A00C62182 /* Products */ = { 613 | isa = PBXGroup; 614 | children = ( 615 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 616 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 617 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 618 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 619 | ); 620 | name = Products; 621 | sourceTree = ""; 622 | }; 623 | 13B07FAE1A68108700A75B9A /* reactNavigationExample */ = { 624 | isa = PBXGroup; 625 | children = ( 626 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 627 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 628 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 629 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 630 | 13B07FB61A68108700A75B9A /* Info.plist */, 631 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 632 | 13B07FB71A68108700A75B9A /* main.m */, 633 | ); 634 | name = reactNavigationExample; 635 | sourceTree = ""; 636 | }; 637 | 146834001AC3E56700842450 /* Products */ = { 638 | isa = PBXGroup; 639 | children = ( 640 | 146834041AC3E56700842450 /* libReact.a */, 641 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 642 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 643 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 644 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 645 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 646 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 647 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 648 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 649 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 650 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 651 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 652 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 653 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 654 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 655 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 656 | ); 657 | name = Products; 658 | sourceTree = ""; 659 | }; 660 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 661 | isa = PBXGroup; 662 | children = ( 663 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 664 | ); 665 | name = Frameworks; 666 | sourceTree = ""; 667 | }; 668 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 669 | isa = PBXGroup; 670 | children = ( 671 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 672 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 673 | ); 674 | name = Products; 675 | sourceTree = ""; 676 | }; 677 | 78C398B11ACF4ADC00677621 /* Products */ = { 678 | isa = PBXGroup; 679 | children = ( 680 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 681 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 682 | ); 683 | name = Products; 684 | sourceTree = ""; 685 | }; 686 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 687 | isa = PBXGroup; 688 | children = ( 689 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 690 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 691 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 692 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 693 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 694 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 695 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 696 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 697 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 698 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 699 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 700 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 701 | F27EAD154FD246C899C8D6EA /* RNCamera.xcodeproj */, 702 | F2BB4544C59A492AB84C27BA /* RNVectorIcons.xcodeproj */, 703 | FDA4AEFC8A9049509552EB83 /* RNSVG.xcodeproj */, 704 | A51733102D434C8F86717400 /* RNMyFancyLibrary.xcodeproj */, 705 | ); 706 | name = Libraries; 707 | sourceTree = ""; 708 | }; 709 | 832341B11AAA6A8300B99B32 /* Products */ = { 710 | isa = PBXGroup; 711 | children = ( 712 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 713 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 714 | ); 715 | name = Products; 716 | sourceTree = ""; 717 | }; 718 | 83CBB9F61A601CBA00E9B192 = { 719 | isa = PBXGroup; 720 | children = ( 721 | 13B07FAE1A68108700A75B9A /* reactNavigationExample */, 722 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 723 | 00E356EF1AD99517003FC87E /* reactNavigationExampleTests */, 724 | 83CBBA001A601CBA00E9B192 /* Products */, 725 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 726 | 0427558F21942409003683F0 /* Recovered References */, 727 | 989BA42DA7E446B8AFF96647 /* Resources */, 728 | ); 729 | indentWidth = 2; 730 | sourceTree = ""; 731 | tabWidth = 2; 732 | usesTabs = 0; 733 | }; 734 | 83CBBA001A601CBA00E9B192 /* Products */ = { 735 | isa = PBXGroup; 736 | children = ( 737 | 13B07F961A680F5B00A75B9A /* reactNavigationExample.app */, 738 | 00E356EE1AD99517003FC87E /* reactNavigationExampleTests.xctest */, 739 | 2D02E47B1E0B4A5D006451C7 /* reactNavigationExample-tvOS.app */, 740 | 2D02E4901E0B4A5D006451C7 /* reactNavigationExample-tvOSTests.xctest */, 741 | ); 742 | name = Products; 743 | sourceTree = ""; 744 | }; 745 | 989BA42DA7E446B8AFF96647 /* Resources */ = { 746 | isa = PBXGroup; 747 | children = ( 748 | BCD95149A7034DCDAC6A657E /* AntDesign.ttf */, 749 | F897C04886E74033B197E683 /* Entypo.ttf */, 750 | F3AB0C1058214D98A11EB7AD /* EvilIcons.ttf */, 751 | 53F61BA80B614B50986B9439 /* Feather.ttf */, 752 | 9438FAF86C9C406798EBFD3A /* FontAwesome.ttf */, 753 | B478F9DBF90744859A93A04D /* FontAwesome5_Brands.ttf */, 754 | 75178FE7F1D3462A8BEB4477 /* FontAwesome5_Regular.ttf */, 755 | FD5F8B925F874C4D9A2DAD25 /* FontAwesome5_Solid.ttf */, 756 | 40BBBD99CE3E41ADAC13D051 /* Foundation.ttf */, 757 | 1E9EBD3DFFEF4FFB87CBB8AB /* Ionicons.ttf */, 758 | 929AD64CB31E4E92B5176E3B /* MaterialCommunityIcons.ttf */, 759 | C0A2068A823A4659B37BADC0 /* MaterialIcons.ttf */, 760 | 12A85504D398429CBDADE463 /* Octicons.ttf */, 761 | 592DEB2AEF92499C832E8140 /* SimpleLineIcons.ttf */, 762 | 8F270ECA5FF1419EAD4F97F4 /* Zocial.ttf */, 763 | ); 764 | name = Resources; 765 | sourceTree = ""; 766 | }; 767 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 768 | isa = PBXGroup; 769 | children = ( 770 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 771 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 772 | ); 773 | name = Products; 774 | sourceTree = ""; 775 | }; 776 | /* End PBXGroup section */ 777 | 778 | /* Begin PBXNativeTarget section */ 779 | 00E356ED1AD99517003FC87E /* reactNavigationExampleTests */ = { 780 | isa = PBXNativeTarget; 781 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactNavigationExampleTests" */; 782 | buildPhases = ( 783 | 00E356EA1AD99517003FC87E /* Sources */, 784 | 00E356EB1AD99517003FC87E /* Frameworks */, 785 | 00E356EC1AD99517003FC87E /* Resources */, 786 | ); 787 | buildRules = ( 788 | ); 789 | dependencies = ( 790 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 791 | ); 792 | name = reactNavigationExampleTests; 793 | productName = reactNavigationExampleTests; 794 | productReference = 00E356EE1AD99517003FC87E /* reactNavigationExampleTests.xctest */; 795 | productType = "com.apple.product-type.bundle.unit-test"; 796 | }; 797 | 13B07F861A680F5B00A75B9A /* reactNavigationExample */ = { 798 | isa = PBXNativeTarget; 799 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactNavigationExample" */; 800 | buildPhases = ( 801 | 13B07F871A680F5B00A75B9A /* Sources */, 802 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 803 | 13B07F8E1A680F5B00A75B9A /* Resources */, 804 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 805 | ); 806 | buildRules = ( 807 | ); 808 | dependencies = ( 809 | ); 810 | name = reactNavigationExample; 811 | productName = "Hello World"; 812 | productReference = 13B07F961A680F5B00A75B9A /* reactNavigationExample.app */; 813 | productType = "com.apple.product-type.application"; 814 | }; 815 | 2D02E47A1E0B4A5D006451C7 /* reactNavigationExample-tvOS */ = { 816 | isa = PBXNativeTarget; 817 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationExample-tvOS" */; 818 | buildPhases = ( 819 | 2D02E4771E0B4A5D006451C7 /* Sources */, 820 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 821 | 2D02E4791E0B4A5D006451C7 /* Resources */, 822 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 823 | ); 824 | buildRules = ( 825 | ); 826 | dependencies = ( 827 | ); 828 | name = "reactNavigationExample-tvOS"; 829 | productName = "reactNavigationExample-tvOS"; 830 | productReference = 2D02E47B1E0B4A5D006451C7 /* reactNavigationExample-tvOS.app */; 831 | productType = "com.apple.product-type.application"; 832 | }; 833 | 2D02E48F1E0B4A5D006451C7 /* reactNavigationExample-tvOSTests */ = { 834 | isa = PBXNativeTarget; 835 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationExample-tvOSTests" */; 836 | buildPhases = ( 837 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 838 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 839 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 840 | ); 841 | buildRules = ( 842 | ); 843 | dependencies = ( 844 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 845 | ); 846 | name = "reactNavigationExample-tvOSTests"; 847 | productName = "reactNavigationExample-tvOSTests"; 848 | productReference = 2D02E4901E0B4A5D006451C7 /* reactNavigationExample-tvOSTests.xctest */; 849 | productType = "com.apple.product-type.bundle.unit-test"; 850 | }; 851 | /* End PBXNativeTarget section */ 852 | 853 | /* Begin PBXProject section */ 854 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 855 | isa = PBXProject; 856 | attributes = { 857 | LastUpgradeCheck = 610; 858 | ORGANIZATIONNAME = Facebook; 859 | TargetAttributes = { 860 | 00E356ED1AD99517003FC87E = { 861 | CreatedOnToolsVersion = 6.2; 862 | TestTargetID = 13B07F861A680F5B00A75B9A; 863 | }; 864 | 13B07F861A680F5B00A75B9A = { 865 | ProvisioningStyle = Automatic; 866 | }; 867 | 2D02E47A1E0B4A5D006451C7 = { 868 | CreatedOnToolsVersion = 8.2.1; 869 | ProvisioningStyle = Automatic; 870 | }; 871 | 2D02E48F1E0B4A5D006451C7 = { 872 | CreatedOnToolsVersion = 8.2.1; 873 | ProvisioningStyle = Automatic; 874 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 875 | }; 876 | }; 877 | }; 878 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactNavigationExample" */; 879 | compatibilityVersion = "Xcode 3.2"; 880 | developmentRegion = English; 881 | hasScannedForEncodings = 0; 882 | knownRegions = ( 883 | en, 884 | Base, 885 | ); 886 | mainGroup = 83CBB9F61A601CBA00E9B192; 887 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 888 | projectDirPath = ""; 889 | projectReferences = ( 890 | { 891 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 892 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 893 | }, 894 | { 895 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 896 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 897 | }, 898 | { 899 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 900 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 901 | }, 902 | { 903 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 904 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 905 | }, 906 | { 907 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 908 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 909 | }, 910 | { 911 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 912 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 913 | }, 914 | { 915 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 916 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 917 | }, 918 | { 919 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 920 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 921 | }, 922 | { 923 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 924 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 925 | }, 926 | { 927 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 928 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 929 | }, 930 | { 931 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 932 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 933 | }, 934 | { 935 | ProductGroup = 146834001AC3E56700842450 /* Products */; 936 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 937 | }, 938 | { 939 | ProductGroup = 042759D6219EBB5D003683F0 /* Products */; 940 | ProjectRef = F27EAD154FD246C899C8D6EA /* RNCamera.xcodeproj */; 941 | }, 942 | { 943 | ProductGroup = 042F8F1021B7BD27002FD1E4 /* Products */; 944 | ProjectRef = A51733102D434C8F86717400 /* RNMyFancyLibrary.xcodeproj */; 945 | }, 946 | { 947 | ProductGroup = 0481BA4A21AE858200A124AF /* Products */; 948 | ProjectRef = FDA4AEFC8A9049509552EB83 /* RNSVG.xcodeproj */; 949 | }, 950 | { 951 | ProductGroup = 04275A4021A250C9003683F0 /* Products */; 952 | ProjectRef = F2BB4544C59A492AB84C27BA /* RNVectorIcons.xcodeproj */; 953 | }, 954 | ); 955 | projectRoot = ""; 956 | targets = ( 957 | 13B07F861A680F5B00A75B9A /* reactNavigationExample */, 958 | 00E356ED1AD99517003FC87E /* reactNavigationExampleTests */, 959 | 2D02E47A1E0B4A5D006451C7 /* reactNavigationExample-tvOS */, 960 | 2D02E48F1E0B4A5D006451C7 /* reactNavigationExample-tvOSTests */, 961 | ); 962 | }; 963 | /* End PBXProject section */ 964 | 965 | /* Begin PBXReferenceProxy section */ 966 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 967 | isa = PBXReferenceProxy; 968 | fileType = archive.ar; 969 | path = libRCTActionSheet.a; 970 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 971 | sourceTree = BUILT_PRODUCTS_DIR; 972 | }; 973 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 974 | isa = PBXReferenceProxy; 975 | fileType = archive.ar; 976 | path = libRCTGeolocation.a; 977 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 978 | sourceTree = BUILT_PRODUCTS_DIR; 979 | }; 980 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 981 | isa = PBXReferenceProxy; 982 | fileType = archive.ar; 983 | path = libRCTImage.a; 984 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 985 | sourceTree = BUILT_PRODUCTS_DIR; 986 | }; 987 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 988 | isa = PBXReferenceProxy; 989 | fileType = archive.ar; 990 | path = libRCTNetwork.a; 991 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 992 | sourceTree = BUILT_PRODUCTS_DIR; 993 | }; 994 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 995 | isa = PBXReferenceProxy; 996 | fileType = archive.ar; 997 | path = libRCTVibration.a; 998 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 999 | sourceTree = BUILT_PRODUCTS_DIR; 1000 | }; 1001 | 042759FF219EBB5E003683F0 /* libRNCamera.a */ = { 1002 | isa = PBXReferenceProxy; 1003 | fileType = archive.ar; 1004 | path = libRNCamera.a; 1005 | remoteRef = 042759FE219EBB5E003683F0 /* PBXContainerItemProxy */; 1006 | sourceTree = BUILT_PRODUCTS_DIR; 1007 | }; 1008 | 04275A4521A250C9003683F0 /* libRNVectorIcons.a */ = { 1009 | isa = PBXReferenceProxy; 1010 | fileType = archive.ar; 1011 | path = libRNVectorIcons.a; 1012 | remoteRef = 04275A4421A250C9003683F0 /* PBXContainerItemProxy */; 1013 | sourceTree = BUILT_PRODUCTS_DIR; 1014 | }; 1015 | 04275A4721A250C9003683F0 /* libRNVectorIcons-tvOS.a */ = { 1016 | isa = PBXReferenceProxy; 1017 | fileType = archive.ar; 1018 | path = "libRNVectorIcons-tvOS.a"; 1019 | remoteRef = 04275A4621A250C9003683F0 /* PBXContainerItemProxy */; 1020 | sourceTree = BUILT_PRODUCTS_DIR; 1021 | }; 1022 | 042F8F1421B7BD27002FD1E4 /* libRNMyFancyLibrary.a */ = { 1023 | isa = PBXReferenceProxy; 1024 | fileType = archive.ar; 1025 | path = libRNMyFancyLibrary.a; 1026 | remoteRef = 042F8F1321B7BD27002FD1E4 /* PBXContainerItemProxy */; 1027 | sourceTree = BUILT_PRODUCTS_DIR; 1028 | }; 1029 | 0481BA4F21AE858300A124AF /* libRNSVG.a */ = { 1030 | isa = PBXReferenceProxy; 1031 | fileType = archive.ar; 1032 | path = libRNSVG.a; 1033 | remoteRef = 0481BA4E21AE858300A124AF /* PBXContainerItemProxy */; 1034 | sourceTree = BUILT_PRODUCTS_DIR; 1035 | }; 1036 | 0481BA5121AE858300A124AF /* libRNSVG-tvOS.a */ = { 1037 | isa = PBXReferenceProxy; 1038 | fileType = archive.ar; 1039 | path = "libRNSVG-tvOS.a"; 1040 | remoteRef = 0481BA5021AE858300A124AF /* PBXContainerItemProxy */; 1041 | sourceTree = BUILT_PRODUCTS_DIR; 1042 | }; 1043 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 1044 | isa = PBXReferenceProxy; 1045 | fileType = archive.ar; 1046 | path = libRCTSettings.a; 1047 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 1048 | sourceTree = BUILT_PRODUCTS_DIR; 1049 | }; 1050 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 1051 | isa = PBXReferenceProxy; 1052 | fileType = archive.ar; 1053 | path = libRCTWebSocket.a; 1054 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 1055 | sourceTree = BUILT_PRODUCTS_DIR; 1056 | }; 1057 | 146834041AC3E56700842450 /* libReact.a */ = { 1058 | isa = PBXReferenceProxy; 1059 | fileType = archive.ar; 1060 | path = libReact.a; 1061 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 1062 | sourceTree = BUILT_PRODUCTS_DIR; 1063 | }; 1064 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 1065 | isa = PBXReferenceProxy; 1066 | fileType = archive.ar; 1067 | path = "libRCTBlob-tvOS.a"; 1068 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 1069 | sourceTree = BUILT_PRODUCTS_DIR; 1070 | }; 1071 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 1072 | isa = PBXReferenceProxy; 1073 | fileType = archive.ar; 1074 | path = libfishhook.a; 1075 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 1076 | sourceTree = BUILT_PRODUCTS_DIR; 1077 | }; 1078 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 1079 | isa = PBXReferenceProxy; 1080 | fileType = archive.ar; 1081 | path = "libfishhook-tvOS.a"; 1082 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 1083 | sourceTree = BUILT_PRODUCTS_DIR; 1084 | }; 1085 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 1086 | isa = PBXReferenceProxy; 1087 | fileType = archive.ar; 1088 | path = libjsinspector.a; 1089 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 1090 | sourceTree = BUILT_PRODUCTS_DIR; 1091 | }; 1092 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 1093 | isa = PBXReferenceProxy; 1094 | fileType = archive.ar; 1095 | path = "libjsinspector-tvOS.a"; 1096 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 1097 | sourceTree = BUILT_PRODUCTS_DIR; 1098 | }; 1099 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 1100 | isa = PBXReferenceProxy; 1101 | fileType = archive.ar; 1102 | path = "libthird-party.a"; 1103 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 1104 | sourceTree = BUILT_PRODUCTS_DIR; 1105 | }; 1106 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 1107 | isa = PBXReferenceProxy; 1108 | fileType = archive.ar; 1109 | path = "libthird-party.a"; 1110 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 1111 | sourceTree = BUILT_PRODUCTS_DIR; 1112 | }; 1113 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 1114 | isa = PBXReferenceProxy; 1115 | fileType = archive.ar; 1116 | path = "libdouble-conversion.a"; 1117 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 1118 | sourceTree = BUILT_PRODUCTS_DIR; 1119 | }; 1120 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 1121 | isa = PBXReferenceProxy; 1122 | fileType = archive.ar; 1123 | path = "libdouble-conversion.a"; 1124 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 1125 | sourceTree = BUILT_PRODUCTS_DIR; 1126 | }; 1127 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 1128 | isa = PBXReferenceProxy; 1129 | fileType = archive.ar; 1130 | path = libprivatedata.a; 1131 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 1132 | sourceTree = BUILT_PRODUCTS_DIR; 1133 | }; 1134 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 1135 | isa = PBXReferenceProxy; 1136 | fileType = archive.ar; 1137 | path = "libprivatedata-tvOS.a"; 1138 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 1139 | sourceTree = BUILT_PRODUCTS_DIR; 1140 | }; 1141 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 1142 | isa = PBXReferenceProxy; 1143 | fileType = archive.ar; 1144 | path = "libRCTImage-tvOS.a"; 1145 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 1146 | sourceTree = BUILT_PRODUCTS_DIR; 1147 | }; 1148 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1149 | isa = PBXReferenceProxy; 1150 | fileType = archive.ar; 1151 | path = "libRCTLinking-tvOS.a"; 1152 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1153 | sourceTree = BUILT_PRODUCTS_DIR; 1154 | }; 1155 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1156 | isa = PBXReferenceProxy; 1157 | fileType = archive.ar; 1158 | path = "libRCTNetwork-tvOS.a"; 1159 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1160 | sourceTree = BUILT_PRODUCTS_DIR; 1161 | }; 1162 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1163 | isa = PBXReferenceProxy; 1164 | fileType = archive.ar; 1165 | path = "libRCTSettings-tvOS.a"; 1166 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1167 | sourceTree = BUILT_PRODUCTS_DIR; 1168 | }; 1169 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1170 | isa = PBXReferenceProxy; 1171 | fileType = archive.ar; 1172 | path = "libRCTText-tvOS.a"; 1173 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1174 | sourceTree = BUILT_PRODUCTS_DIR; 1175 | }; 1176 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1177 | isa = PBXReferenceProxy; 1178 | fileType = archive.ar; 1179 | path = "libRCTWebSocket-tvOS.a"; 1180 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1181 | sourceTree = BUILT_PRODUCTS_DIR; 1182 | }; 1183 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1184 | isa = PBXReferenceProxy; 1185 | fileType = archive.ar; 1186 | path = libReact.a; 1187 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1188 | sourceTree = BUILT_PRODUCTS_DIR; 1189 | }; 1190 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1191 | isa = PBXReferenceProxy; 1192 | fileType = archive.ar; 1193 | path = libyoga.a; 1194 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1195 | sourceTree = BUILT_PRODUCTS_DIR; 1196 | }; 1197 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1198 | isa = PBXReferenceProxy; 1199 | fileType = archive.ar; 1200 | path = libyoga.a; 1201 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1202 | sourceTree = BUILT_PRODUCTS_DIR; 1203 | }; 1204 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1205 | isa = PBXReferenceProxy; 1206 | fileType = archive.ar; 1207 | path = libcxxreact.a; 1208 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1209 | sourceTree = BUILT_PRODUCTS_DIR; 1210 | }; 1211 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1212 | isa = PBXReferenceProxy; 1213 | fileType = archive.ar; 1214 | path = libcxxreact.a; 1215 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1216 | sourceTree = BUILT_PRODUCTS_DIR; 1217 | }; 1218 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1219 | isa = PBXReferenceProxy; 1220 | fileType = archive.ar; 1221 | path = libjschelpers.a; 1222 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1223 | sourceTree = BUILT_PRODUCTS_DIR; 1224 | }; 1225 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1226 | isa = PBXReferenceProxy; 1227 | fileType = archive.ar; 1228 | path = libjschelpers.a; 1229 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1230 | sourceTree = BUILT_PRODUCTS_DIR; 1231 | }; 1232 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1233 | isa = PBXReferenceProxy; 1234 | fileType = archive.ar; 1235 | path = libRCTAnimation.a; 1236 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1237 | sourceTree = BUILT_PRODUCTS_DIR; 1238 | }; 1239 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1240 | isa = PBXReferenceProxy; 1241 | fileType = archive.ar; 1242 | path = libRCTAnimation.a; 1243 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1244 | sourceTree = BUILT_PRODUCTS_DIR; 1245 | }; 1246 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1247 | isa = PBXReferenceProxy; 1248 | fileType = archive.ar; 1249 | path = libRCTLinking.a; 1250 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1251 | sourceTree = BUILT_PRODUCTS_DIR; 1252 | }; 1253 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1254 | isa = PBXReferenceProxy; 1255 | fileType = archive.ar; 1256 | path = libRCTText.a; 1257 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1258 | sourceTree = BUILT_PRODUCTS_DIR; 1259 | }; 1260 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1261 | isa = PBXReferenceProxy; 1262 | fileType = archive.ar; 1263 | path = libRCTBlob.a; 1264 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1265 | sourceTree = BUILT_PRODUCTS_DIR; 1266 | }; 1267 | /* End PBXReferenceProxy section */ 1268 | 1269 | /* Begin PBXResourcesBuildPhase section */ 1270 | 00E356EC1AD99517003FC87E /* Resources */ = { 1271 | isa = PBXResourcesBuildPhase; 1272 | buildActionMask = 2147483647; 1273 | files = ( 1274 | ); 1275 | runOnlyForDeploymentPostprocessing = 0; 1276 | }; 1277 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1278 | isa = PBXResourcesBuildPhase; 1279 | buildActionMask = 2147483647; 1280 | files = ( 1281 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1282 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1283 | 0D35F7080F404416BD548F9F /* AntDesign.ttf in Resources */, 1284 | 9013E6500E9945B8956B1054 /* Entypo.ttf in Resources */, 1285 | 10376C020C0F4EC0818B057B /* EvilIcons.ttf in Resources */, 1286 | 1562218AB4564926949975DA /* Feather.ttf in Resources */, 1287 | 06F0D59B1A3E46FB958ED61A /* FontAwesome.ttf in Resources */, 1288 | 6BD6E29111BE4D469F141C69 /* FontAwesome5_Brands.ttf in Resources */, 1289 | 1AE9C6D6C5644B40AA44EDD9 /* FontAwesome5_Regular.ttf in Resources */, 1290 | 81F638ACDD1045E4B9A49539 /* FontAwesome5_Solid.ttf in Resources */, 1291 | E2C99294473A4AF4B48BF032 /* Foundation.ttf in Resources */, 1292 | B4DAD9C105B34E8AAC722E68 /* Ionicons.ttf in Resources */, 1293 | AE69F076E5994081A6925E30 /* MaterialCommunityIcons.ttf in Resources */, 1294 | 5C2893DB20F14B9F8D851B17 /* MaterialIcons.ttf in Resources */, 1295 | 282829CB99284774BEA85C3A /* Octicons.ttf in Resources */, 1296 | 69FD4554680C4BA287278251 /* SimpleLineIcons.ttf in Resources */, 1297 | 4E856D35DD6A4016A877087D /* Zocial.ttf in Resources */, 1298 | ); 1299 | runOnlyForDeploymentPostprocessing = 0; 1300 | }; 1301 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1302 | isa = PBXResourcesBuildPhase; 1303 | buildActionMask = 2147483647; 1304 | files = ( 1305 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1306 | ); 1307 | runOnlyForDeploymentPostprocessing = 0; 1308 | }; 1309 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1310 | isa = PBXResourcesBuildPhase; 1311 | buildActionMask = 2147483647; 1312 | files = ( 1313 | ); 1314 | runOnlyForDeploymentPostprocessing = 0; 1315 | }; 1316 | /* End PBXResourcesBuildPhase section */ 1317 | 1318 | /* Begin PBXShellScriptBuildPhase section */ 1319 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1320 | isa = PBXShellScriptBuildPhase; 1321 | buildActionMask = 2147483647; 1322 | files = ( 1323 | ); 1324 | inputPaths = ( 1325 | ); 1326 | name = "Bundle React Native code and images"; 1327 | outputPaths = ( 1328 | ); 1329 | runOnlyForDeploymentPostprocessing = 0; 1330 | shellPath = /bin/sh; 1331 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1332 | }; 1333 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1334 | isa = PBXShellScriptBuildPhase; 1335 | buildActionMask = 2147483647; 1336 | files = ( 1337 | ); 1338 | inputPaths = ( 1339 | ); 1340 | name = "Bundle React Native Code And Images"; 1341 | outputPaths = ( 1342 | ); 1343 | runOnlyForDeploymentPostprocessing = 0; 1344 | shellPath = /bin/sh; 1345 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1346 | }; 1347 | /* End PBXShellScriptBuildPhase section */ 1348 | 1349 | /* Begin PBXSourcesBuildPhase section */ 1350 | 00E356EA1AD99517003FC87E /* Sources */ = { 1351 | isa = PBXSourcesBuildPhase; 1352 | buildActionMask = 2147483647; 1353 | files = ( 1354 | 00E356F31AD99517003FC87E /* reactNavigationExampleTests.m in Sources */, 1355 | ); 1356 | runOnlyForDeploymentPostprocessing = 0; 1357 | }; 1358 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1359 | isa = PBXSourcesBuildPhase; 1360 | buildActionMask = 2147483647; 1361 | files = ( 1362 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1363 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1364 | ); 1365 | runOnlyForDeploymentPostprocessing = 0; 1366 | }; 1367 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1368 | isa = PBXSourcesBuildPhase; 1369 | buildActionMask = 2147483647; 1370 | files = ( 1371 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1372 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1373 | ); 1374 | runOnlyForDeploymentPostprocessing = 0; 1375 | }; 1376 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1377 | isa = PBXSourcesBuildPhase; 1378 | buildActionMask = 2147483647; 1379 | files = ( 1380 | 2DCD954D1E0B4F2C00145EB5 /* reactNavigationExampleTests.m in Sources */, 1381 | ); 1382 | runOnlyForDeploymentPostprocessing = 0; 1383 | }; 1384 | /* End PBXSourcesBuildPhase section */ 1385 | 1386 | /* Begin PBXTargetDependency section */ 1387 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1388 | isa = PBXTargetDependency; 1389 | target = 13B07F861A680F5B00A75B9A /* reactNavigationExample */; 1390 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1391 | }; 1392 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1393 | isa = PBXTargetDependency; 1394 | target = 2D02E47A1E0B4A5D006451C7 /* reactNavigationExample-tvOS */; 1395 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1396 | }; 1397 | /* End PBXTargetDependency section */ 1398 | 1399 | /* Begin PBXVariantGroup section */ 1400 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1401 | isa = PBXVariantGroup; 1402 | children = ( 1403 | 13B07FB21A68108700A75B9A /* Base */, 1404 | ); 1405 | name = LaunchScreen.xib; 1406 | path = reactNavigationExample; 1407 | sourceTree = ""; 1408 | }; 1409 | /* End PBXVariantGroup section */ 1410 | 1411 | /* Begin XCBuildConfiguration section */ 1412 | 00E356F61AD99517003FC87E /* Debug */ = { 1413 | isa = XCBuildConfiguration; 1414 | buildSettings = { 1415 | BUNDLE_LOADER = "$(TEST_HOST)"; 1416 | GCC_PREPROCESSOR_DEFINITIONS = ( 1417 | "DEBUG=1", 1418 | "$(inherited)", 1419 | ); 1420 | HEADER_SEARCH_PATHS = ( 1421 | "$(inherited)", 1422 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1423 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1424 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1425 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1426 | ); 1427 | INFOPLIST_FILE = reactNavigationExampleTests/Info.plist; 1428 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1429 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1430 | LIBRARY_SEARCH_PATHS = ( 1431 | "$(inherited)", 1432 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1433 | ); 1434 | OTHER_LDFLAGS = ( 1435 | "-ObjC", 1436 | "-lc++", 1437 | ); 1438 | PRODUCT_NAME = "$(TARGET_NAME)"; 1439 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationExample.app/reactNavigationExample"; 1440 | }; 1441 | name = Debug; 1442 | }; 1443 | 00E356F71AD99517003FC87E /* Release */ = { 1444 | isa = XCBuildConfiguration; 1445 | buildSettings = { 1446 | BUNDLE_LOADER = "$(TEST_HOST)"; 1447 | COPY_PHASE_STRIP = NO; 1448 | HEADER_SEARCH_PATHS = ( 1449 | "$(inherited)", 1450 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1451 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1452 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1453 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1454 | ); 1455 | INFOPLIST_FILE = reactNavigationExampleTests/Info.plist; 1456 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1457 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1458 | LIBRARY_SEARCH_PATHS = ( 1459 | "$(inherited)", 1460 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1461 | ); 1462 | OTHER_LDFLAGS = ( 1463 | "-ObjC", 1464 | "-lc++", 1465 | ); 1466 | PRODUCT_NAME = "$(TARGET_NAME)"; 1467 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationExample.app/reactNavigationExample"; 1468 | }; 1469 | name = Release; 1470 | }; 1471 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1472 | isa = XCBuildConfiguration; 1473 | buildSettings = { 1474 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1475 | CODE_SIGN_IDENTITY = "iPhone Developer"; 1476 | CODE_SIGN_STYLE = Automatic; 1477 | CURRENT_PROJECT_VERSION = 1; 1478 | DEAD_CODE_STRIPPING = NO; 1479 | DEVELOPMENT_TEAM = ""; 1480 | HEADER_SEARCH_PATHS = ( 1481 | "$(inherited)", 1482 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1483 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1484 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1485 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1486 | ); 1487 | INFOPLIST_FILE = reactNavigationExample/Info.plist; 1488 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1489 | OTHER_LDFLAGS = ( 1490 | "$(inherited)", 1491 | "-ObjC", 1492 | "-lc++", 1493 | ); 1494 | PRODUCT_NAME = reactNavigationExample; 1495 | PROVISIONING_PROFILE_SPECIFIER = ""; 1496 | VERSIONING_SYSTEM = "apple-generic"; 1497 | }; 1498 | name = Debug; 1499 | }; 1500 | 13B07F951A680F5B00A75B9A /* Release */ = { 1501 | isa = XCBuildConfiguration; 1502 | buildSettings = { 1503 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1504 | CODE_SIGN_IDENTITY = "iPhone Developer"; 1505 | CODE_SIGN_STYLE = Automatic; 1506 | CURRENT_PROJECT_VERSION = 1; 1507 | DEVELOPMENT_TEAM = ""; 1508 | HEADER_SEARCH_PATHS = ( 1509 | "$(inherited)", 1510 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1511 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1512 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1513 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1514 | ); 1515 | INFOPLIST_FILE = reactNavigationExample/Info.plist; 1516 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1517 | OTHER_LDFLAGS = ( 1518 | "$(inherited)", 1519 | "-ObjC", 1520 | "-lc++", 1521 | ); 1522 | PRODUCT_NAME = reactNavigationExample; 1523 | PROVISIONING_PROFILE_SPECIFIER = ""; 1524 | VERSIONING_SYSTEM = "apple-generic"; 1525 | }; 1526 | name = Release; 1527 | }; 1528 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1529 | isa = XCBuildConfiguration; 1530 | buildSettings = { 1531 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1532 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1533 | CLANG_ANALYZER_NONNULL = YES; 1534 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1535 | CLANG_WARN_INFINITE_RECURSION = YES; 1536 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1537 | DEBUG_INFORMATION_FORMAT = dwarf; 1538 | ENABLE_TESTABILITY = YES; 1539 | GCC_NO_COMMON_BLOCKS = YES; 1540 | HEADER_SEARCH_PATHS = ( 1541 | "$(inherited)", 1542 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1543 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1544 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1545 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1546 | ); 1547 | INFOPLIST_FILE = "reactNavigationExample-tvOS/Info.plist"; 1548 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1549 | LIBRARY_SEARCH_PATHS = ( 1550 | "$(inherited)", 1551 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1552 | ); 1553 | OTHER_LDFLAGS = ( 1554 | "-ObjC", 1555 | "-lc++", 1556 | ); 1557 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationExample-tvOS"; 1558 | PRODUCT_NAME = "$(TARGET_NAME)"; 1559 | SDKROOT = appletvos; 1560 | TARGETED_DEVICE_FAMILY = 3; 1561 | TVOS_DEPLOYMENT_TARGET = 9.2; 1562 | }; 1563 | name = Debug; 1564 | }; 1565 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1566 | isa = XCBuildConfiguration; 1567 | buildSettings = { 1568 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1569 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1570 | CLANG_ANALYZER_NONNULL = YES; 1571 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1572 | CLANG_WARN_INFINITE_RECURSION = YES; 1573 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1574 | COPY_PHASE_STRIP = NO; 1575 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1576 | GCC_NO_COMMON_BLOCKS = YES; 1577 | HEADER_SEARCH_PATHS = ( 1578 | "$(inherited)", 1579 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1580 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1581 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1582 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1583 | ); 1584 | INFOPLIST_FILE = "reactNavigationExample-tvOS/Info.plist"; 1585 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1586 | LIBRARY_SEARCH_PATHS = ( 1587 | "$(inherited)", 1588 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1589 | ); 1590 | OTHER_LDFLAGS = ( 1591 | "-ObjC", 1592 | "-lc++", 1593 | ); 1594 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationExample-tvOS"; 1595 | PRODUCT_NAME = "$(TARGET_NAME)"; 1596 | SDKROOT = appletvos; 1597 | TARGETED_DEVICE_FAMILY = 3; 1598 | TVOS_DEPLOYMENT_TARGET = 9.2; 1599 | }; 1600 | name = Release; 1601 | }; 1602 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1603 | isa = XCBuildConfiguration; 1604 | buildSettings = { 1605 | BUNDLE_LOADER = "$(TEST_HOST)"; 1606 | CLANG_ANALYZER_NONNULL = YES; 1607 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1608 | CLANG_WARN_INFINITE_RECURSION = YES; 1609 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1610 | DEBUG_INFORMATION_FORMAT = dwarf; 1611 | ENABLE_TESTABILITY = YES; 1612 | GCC_NO_COMMON_BLOCKS = YES; 1613 | HEADER_SEARCH_PATHS = ( 1614 | "$(inherited)", 1615 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1616 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1617 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1618 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1619 | ); 1620 | INFOPLIST_FILE = "reactNavigationExample-tvOSTests/Info.plist"; 1621 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1622 | LIBRARY_SEARCH_PATHS = ( 1623 | "$(inherited)", 1624 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1625 | ); 1626 | OTHER_LDFLAGS = ( 1627 | "-ObjC", 1628 | "-lc++", 1629 | ); 1630 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationExample-tvOSTests"; 1631 | PRODUCT_NAME = "$(TARGET_NAME)"; 1632 | SDKROOT = appletvos; 1633 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationExample-tvOS.app/reactNavigationExample-tvOS"; 1634 | TVOS_DEPLOYMENT_TARGET = 10.1; 1635 | }; 1636 | name = Debug; 1637 | }; 1638 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1639 | isa = XCBuildConfiguration; 1640 | buildSettings = { 1641 | BUNDLE_LOADER = "$(TEST_HOST)"; 1642 | CLANG_ANALYZER_NONNULL = YES; 1643 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1644 | CLANG_WARN_INFINITE_RECURSION = YES; 1645 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1646 | COPY_PHASE_STRIP = NO; 1647 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1648 | GCC_NO_COMMON_BLOCKS = YES; 1649 | HEADER_SEARCH_PATHS = ( 1650 | "$(inherited)", 1651 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1652 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1653 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1654 | "$(SRCROOT)/../node_modules/react-native-my-fancy-library/ios", 1655 | ); 1656 | INFOPLIST_FILE = "reactNavigationExample-tvOSTests/Info.plist"; 1657 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1658 | LIBRARY_SEARCH_PATHS = ( 1659 | "$(inherited)", 1660 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1661 | ); 1662 | OTHER_LDFLAGS = ( 1663 | "-ObjC", 1664 | "-lc++", 1665 | ); 1666 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNavigationExample-tvOSTests"; 1667 | PRODUCT_NAME = "$(TARGET_NAME)"; 1668 | SDKROOT = appletvos; 1669 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNavigationExample-tvOS.app/reactNavigationExample-tvOS"; 1670 | TVOS_DEPLOYMENT_TARGET = 10.1; 1671 | }; 1672 | name = Release; 1673 | }; 1674 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1675 | isa = XCBuildConfiguration; 1676 | buildSettings = { 1677 | ALWAYS_SEARCH_USER_PATHS = NO; 1678 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1679 | CLANG_CXX_LIBRARY = "libc++"; 1680 | CLANG_ENABLE_MODULES = YES; 1681 | CLANG_ENABLE_OBJC_ARC = YES; 1682 | CLANG_WARN_BOOL_CONVERSION = YES; 1683 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1684 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1685 | CLANG_WARN_EMPTY_BODY = YES; 1686 | CLANG_WARN_ENUM_CONVERSION = YES; 1687 | CLANG_WARN_INT_CONVERSION = YES; 1688 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1689 | CLANG_WARN_UNREACHABLE_CODE = YES; 1690 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1691 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1692 | COPY_PHASE_STRIP = NO; 1693 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1694 | GCC_C_LANGUAGE_STANDARD = gnu99; 1695 | GCC_DYNAMIC_NO_PIC = NO; 1696 | GCC_OPTIMIZATION_LEVEL = 0; 1697 | GCC_PREPROCESSOR_DEFINITIONS = ( 1698 | "DEBUG=1", 1699 | "$(inherited)", 1700 | ); 1701 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1702 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1703 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1704 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1705 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1706 | GCC_WARN_UNUSED_FUNCTION = YES; 1707 | GCC_WARN_UNUSED_VARIABLE = YES; 1708 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1709 | MTL_ENABLE_DEBUG_INFO = YES; 1710 | ONLY_ACTIVE_ARCH = YES; 1711 | SDKROOT = iphoneos; 1712 | }; 1713 | name = Debug; 1714 | }; 1715 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1716 | isa = XCBuildConfiguration; 1717 | buildSettings = { 1718 | ALWAYS_SEARCH_USER_PATHS = NO; 1719 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1720 | CLANG_CXX_LIBRARY = "libc++"; 1721 | CLANG_ENABLE_MODULES = YES; 1722 | CLANG_ENABLE_OBJC_ARC = YES; 1723 | CLANG_WARN_BOOL_CONVERSION = YES; 1724 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1725 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1726 | CLANG_WARN_EMPTY_BODY = YES; 1727 | CLANG_WARN_ENUM_CONVERSION = YES; 1728 | CLANG_WARN_INT_CONVERSION = YES; 1729 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1730 | CLANG_WARN_UNREACHABLE_CODE = YES; 1731 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1732 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1733 | COPY_PHASE_STRIP = YES; 1734 | ENABLE_NS_ASSERTIONS = NO; 1735 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1736 | GCC_C_LANGUAGE_STANDARD = gnu99; 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 = 8.0; 1744 | MTL_ENABLE_DEBUG_INFO = NO; 1745 | SDKROOT = iphoneos; 1746 | VALIDATE_PRODUCT = YES; 1747 | }; 1748 | name = Release; 1749 | }; 1750 | /* End XCBuildConfiguration section */ 1751 | 1752 | /* Begin XCConfigurationList section */ 1753 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactNavigationExampleTests" */ = { 1754 | isa = XCConfigurationList; 1755 | buildConfigurations = ( 1756 | 00E356F61AD99517003FC87E /* Debug */, 1757 | 00E356F71AD99517003FC87E /* Release */, 1758 | ); 1759 | defaultConfigurationIsVisible = 0; 1760 | defaultConfigurationName = Release; 1761 | }; 1762 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactNavigationExample" */ = { 1763 | isa = XCConfigurationList; 1764 | buildConfigurations = ( 1765 | 13B07F941A680F5B00A75B9A /* Debug */, 1766 | 13B07F951A680F5B00A75B9A /* Release */, 1767 | ); 1768 | defaultConfigurationIsVisible = 0; 1769 | defaultConfigurationName = Release; 1770 | }; 1771 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationExample-tvOS" */ = { 1772 | isa = XCConfigurationList; 1773 | buildConfigurations = ( 1774 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1775 | 2D02E4981E0B4A5E006451C7 /* Release */, 1776 | ); 1777 | defaultConfigurationIsVisible = 0; 1778 | defaultConfigurationName = Release; 1779 | }; 1780 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNavigationExample-tvOSTests" */ = { 1781 | isa = XCConfigurationList; 1782 | buildConfigurations = ( 1783 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1784 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1785 | ); 1786 | defaultConfigurationIsVisible = 0; 1787 | defaultConfigurationName = Release; 1788 | }; 1789 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactNavigationExample" */ = { 1790 | isa = XCConfigurationList; 1791 | buildConfigurations = ( 1792 | 83CBBA201A601CBA00E9B192 /* Debug */, 1793 | 83CBBA211A601CBA00E9B192 /* Release */, 1794 | ); 1795 | defaultConfigurationIsVisible = 0; 1796 | defaultConfigurationName = Release; 1797 | }; 1798 | /* End XCConfigurationList section */ 1799 | }; 1800 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1801 | } 1802 | -------------------------------------------------------------------------------- /ios/reactNavigationExample.xcodeproj/xcshareddata/xcschemes/reactNavigationExample-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/reactNavigationExample.xcodeproj/xcshareddata/xcschemes/reactNavigationExample.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/reactNavigationExample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 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 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/reactNavigationExample/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 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 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"reactNavigationExample" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /ios/reactNavigationExample/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/reactNavigationExample/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/reactNavigationExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/reactNavigationExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | RNDemos 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 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 | NSAppTransportSecurity 28 | 29 | NSExceptionDomains 30 | 31 | localhost 32 | 33 | NSExceptionAllowsInsecureHTTPLoads 34 | 35 | 36 | 37 | 38 | NSCameraUsageDescription 39 | 需要使用您的相机扫描二维码,用来{目的} 40 | NSLocationWhenInUseUsageDescription 41 | 42 | UILaunchStoryboardName 43 | LaunchScreen 44 | UIRequiredDeviceCapabilities 45 | 46 | armv7 47 | 48 | UISupportedInterfaceOrientations 49 | 50 | UIInterfaceOrientationPortrait 51 | UIInterfaceOrientationLandscapeLeft 52 | UIInterfaceOrientationLandscapeRight 53 | 54 | UIViewControllerBasedStatusBarAppearance 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 | -------------------------------------------------------------------------------- /ios/reactNavigationExample/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 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/reactNavigationExampleTests/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/reactNavigationExampleTests/reactNavigationExampleTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 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 reactNavigationExampleTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation reactNavigationExampleTests 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 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNavigationExample", 3 | "version": "0.0.1", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "js-tokens": { 8 | "version": "4.0.0", 9 | "resolved": "http://registry.npm.taobao.org/js-tokens/download/js-tokens-4.0.0.tgz", 10 | "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=", 11 | "dev": true 12 | }, 13 | "loose-envify": { 14 | "version": "1.4.0", 15 | "resolved": "http://registry.npm.taobao.org/loose-envify/download/loose-envify-1.4.0.tgz", 16 | "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=", 17 | "dev": true, 18 | "requires": { 19 | "js-tokens": "4.0.0" 20 | } 21 | }, 22 | "object-assign": { 23 | "version": "4.1.1", 24 | "resolved": "http://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz", 25 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", 26 | "dev": true 27 | }, 28 | "prop-types": { 29 | "version": "15.6.2", 30 | "resolved": "http://registry.npm.taobao.org/prop-types/download/prop-types-15.6.2.tgz", 31 | "integrity": "sha1-BdXKd7RFPphdYPx/+MhZCUpJcQI=", 32 | "dev": true, 33 | "requires": { 34 | "loose-envify": "1.4.0", 35 | "object-assign": "4.1.1" 36 | } 37 | }, 38 | "react-dom": { 39 | "version": "16.6.3", 40 | "resolved": "http://registry.npm.taobao.org/react-dom/download/react-dom-16.6.3.tgz", 41 | "integrity": "sha1-j6e6aIPIUhG42i0O/v/J04JczMA=", 42 | "dev": true, 43 | "requires": { 44 | "loose-envify": "1.4.0", 45 | "object-assign": "4.1.1", 46 | "prop-types": "15.6.2", 47 | "scheduler": "0.11.2" 48 | } 49 | }, 50 | "scheduler": { 51 | "version": "0.11.2", 52 | "resolved": "http://registry.npm.taobao.org/scheduler/download/scheduler-0.11.2.tgz", 53 | "integrity": "sha1-qNtTmdBuulq6xRtwW3FR0jGdM9M=", 54 | "dev": true, 55 | "requires": { 56 | "loose-envify": "1.4.0", 57 | "object-assign": "4.1.1" 58 | } 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNavigationExample", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "build-ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ./CodePush/ios/main.jsbundle --assets-dest ./CodePush/ios", 8 | "build-android-for-codepush": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output ./CodePush/android/index.android.bundle --assets-dest ./CodePush/android ", 9 | "build-android-for-apk": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res", 10 | "test": "jest" 11 | }, 12 | "dependencies": { 13 | "axios": "^0.18.0", 14 | "md5": "^2.2.1", 15 | "mobx": "^3.6.1", 16 | "mobx-react": "^4.4.2", 17 | "react": "16.6.0-alpha.8af6728", 18 | "react-native": "0.55.3", 19 | "react-native-camera": "git+https://git@github.com/react-native-community/react-native-camera", 20 | "react-native-circular-slider": "git+https://github.com/zgatrying/react-native-circular-slider.git", 21 | "react-native-elements": "^1.0.0-beta7", 22 | "react-native-safe-area-view": "^0.11.0", 23 | "react-native-svg": "^8.0.8", 24 | "react-native-vector-icons": "^6.1.0", 25 | "react-navigation": "^2.18.0", 26 | "react-navigation-mobx-helpers": "^2.0.0", 27 | "react-pullrefresh": "1.6.7" 28 | }, 29 | "devDependencies": { 30 | "babel-jest": "23.6.0", 31 | "babel-plugin-transform-decorators-legacy": "^1.3.5", 32 | "babel-preset-react-native": "4.0.0", 33 | "jest": "23.6.0", 34 | "react-dom": "^16.6.3" 35 | }, 36 | "jest": { 37 | "preset": "react-native" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## react-native 项目的实践总结 2 | 3 | ## 代码没有怎么更新了(慎用!),目前主要在issue中记录RN开发的心得与问题解决过程。 4 | 5 | 本项目作为后续RN项目的模板与案例集合使用。 6 | 7 | 当前app组件结构 8 | - App 9 | - SwitchNavigator(initRouteName: LoadingScreen) 10 | - LoadingScreen 11 | - LoadingScreen 12 | - AuthStack(initRouteName: LoginScreen) 13 | - LoginScreen 14 | - ModalStack(initRouteName: MainStack) 15 | - MainStack(initRouteName: TabNavigator) 16 | - TabNavigator(initRouteName: MainScreen) 17 | - MainScreen 18 | - UserCenterScreen 19 | - MainSubScreen 20 | - UserChildScreen 21 | - UserSecondChildScreen 22 | - ModalScreen 23 | 24 | ### 项目依赖 25 | 26 | - [react-navigation,管理导航](https://reactnavigation.org/) 27 | - [mobx,管理app状态](https://cn.mobx.js.org/) 28 | - [react-native-elements,UI组件库](https://react-native-training.github.io/react-native-elements/docs/getting_started.html) 29 | 30 | # LICENSE 31 | 32 | MIT 33 | -------------------------------------------------------------------------------- /src/NavigationService.js: -------------------------------------------------------------------------------- 1 | 2 | import NavigationService from 'react-navigation-mobx-helpers'; 3 | 4 | export default new NavigationService(); 5 | -------------------------------------------------------------------------------- /src/images/viewfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgatrying/react-native-practices/662c34fa1b53c1c2ffda294bfa8511a9264cda88/src/images/viewfinder.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Provider, inject, observer } from 'mobx-react'; 3 | import Navigator from './router'; 4 | import stores from './store'; 5 | import NavigationService from './NavigationService'; 6 | 7 | class App extends Component { 8 | 9 | componentDidMount() { 10 | console.disableYellowBox = true; //去除黄色弹框警告 11 | } 12 | 13 | render() { 14 | return ( 15 | 18 | ); 19 | } 20 | } 21 | 22 | export default class RootView extends Component { 23 | render() { 24 | return ( 25 | 26 | 27 | 28 | ) 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/router/AuthStack.js: -------------------------------------------------------------------------------- 1 | import LoginScreen from '../screens/Login'; 2 | 3 | import {createStackNavigator} from 'react-navigation'; 4 | 5 | export default createStackNavigator({ 6 | Login: LoginScreen 7 | }) -------------------------------------------------------------------------------- /src/router/MainStack.js: -------------------------------------------------------------------------------- 1 | import MainChildScreen from '../screens/MainChildScreen'; 2 | import UserChildScreen from '../screens/UserChildScreen'; 3 | import UserSecondChildScreen from '../screens/UserSecondChildScreen'; 4 | import LCDemo from '../screens/LCDemo'; 5 | import ScanDemo from '../screens/ScanDemo'; 6 | import HlsDemo from '../screens/HlsDemo'; 7 | 8 | import TabNavigator from './TabNavigator'; 9 | 10 | import {createStackNavigator} from 'react-navigation'; 11 | 12 | const MainStack = createStackNavigator({ 13 | Tab: { 14 | screen: TabNavigator, 15 | navigationOptions: { 16 | header: null 17 | } 18 | }, 19 | LCDemo: LCDemo, 20 | HlsDemo: HlsDemo, 21 | MainChild: MainChildScreen, 22 | UserChild: UserChildScreen, 23 | UserSecondChild: UserSecondChildScreen, 24 | ScanDemo 25 | }, { 26 | initialRouteName: 'Tab' 27 | }) 28 | 29 | export default MainStack; 30 | -------------------------------------------------------------------------------- /src/router/ModalStack.js: -------------------------------------------------------------------------------- 1 | import MainStack from './MainStack'; 2 | import ModalScreen from '../screens/ModalScreen'; 3 | 4 | import {createStackNavigator} from 'react-navigation'; 5 | 6 | export default createStackNavigator({ 7 | MainStack, 8 | ModalScreen 9 | }, { 10 | initialRouteName: 'MainStack', 11 | mode: 'modal', 12 | headerMode: 'none' 13 | }) 14 | -------------------------------------------------------------------------------- /src/router/TabNavigator.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import MainScreen from '../screens/Main'; 3 | import UserCenterScreen from '../screens/UserCenter'; 4 | import AntDesign from 'react-native-vector-icons/AntDesign'; 5 | import {createBottomTabNavigator} from 'react-navigation'; 6 | 7 | export default createBottomTabNavigator({ 8 | Main: MainScreen, 9 | UserCenter: UserCenterScreen 10 | }, { 11 | initialRouteName: 'Main', 12 | navigationOptions: ({ navigation }) => ({ 13 | tabBarIcon: ({ focused, horizontal, tintColor }) => { 14 | const { routeName } = navigation.state; 15 | let iconName; 16 | if (routeName === 'Main') { 17 | iconName = `home`; 18 | } else if (routeName === 'UserCenter') { 19 | iconName = `user`; 20 | } 21 | return ; 22 | }, 23 | }), 24 | tabBarOptions: { 25 | activeTintColor: '#58bbff', 26 | inactiveTintColor: 'gray', 27 | }, 28 | }) -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | import LoadingScreen from '../screens/Loading'; 2 | import AuthStack from './AuthStack'; 3 | import ModalStack from './ModalStack'; 4 | 5 | import {createSwitchNavigator} from 'react-navigation'; 6 | 7 | export default createSwitchNavigator({ 8 | Loading: LoadingScreen, 9 | AuthStack, 10 | ModalStack 11 | }, { 12 | initialRouteName: 'Loading' 13 | }) -------------------------------------------------------------------------------- /src/screens/HlsDemo.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text } from 'react-native'; 3 | 4 | export default class HlsDemo extends Component { 5 | static navigationOptions = { 6 | title: '乐橙 webview直播' 7 | }; 8 | 9 | componentWillUnmount() { 10 | let state = this.props.navigationOptions.state; 11 | if(state && state.params) { 12 | let params = state.params; 13 | params.deleteHls && params.deleteHls(); 14 | } 15 | } 16 | 17 | render() { 18 | return ( 19 | 20 | 21 | ); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/screens/LCDemo.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, ScrollView } from 'react-native'; 3 | import {observable, action, computed} from 'mobx'; 4 | import {observer} from 'mobx-react'; 5 | import SafeAreaView from 'react-native-safe-area-view'; 6 | import md5 from 'md5'; 7 | import { 8 | Button, 9 | Text, 10 | Input, 11 | } from 'react-native-elements'; 12 | import NavigationService from '../NavigationService'; 13 | import fetch from '../utils/lc_fetch'; 14 | @observer 15 | export default class LCDemo extends Component { 16 | 17 | static navigationOptions = { 18 | title: '乐橙开放平台接口调试' 19 | } 20 | 21 | ver = '1.0'; 22 | appId = ''; 23 | appSecret = ''; 24 | 25 | liveToken = ''; 26 | @observable account = ''; 27 | 28 | @observable time = new Date().getTime(); 29 | @observable nonce = this.getRandomNum(); 30 | 31 | @observable responseText = '暂无'; 32 | @observable accessToken = ''; 33 | @observable userToken = ''; 34 | 35 | @observable verifyCode = ''; 36 | 37 | getSign() { 38 | console.log(this.time); 39 | let signOriginString = `time:${this.time},nonce:${this.nonce},appSecret:${this.appSecret}`; 40 | let md5Value = md5(signOriginString); 41 | console.log('md5:', md5Value); 42 | let result = md5Value; 43 | // console.log('16进制32位小写字符串:', result); 44 | return result; 45 | } 46 | 47 | getSystem() { 48 | this.nonce = this.getRandomNum(); 49 | this.time = parseInt(new Date().getTime() / 1000); //单位为秒s 50 | return { 51 | ver: this.ver, 52 | sign: this.getSign(), 53 | appId: this.appId, 54 | time: this.time, 55 | nonce: this.nonce 56 | } 57 | } 58 | 59 | constructor() { 60 | super(); 61 | this.getUserToken = this.getUserToken.bind(this); 62 | this.getAccessToken = this.getAccessToken.bind(this); 63 | this.getVerifyCode = this.getVerifyCode.bind(this); 64 | this.userBind = this.userBind.bind(this); 65 | this.createHls = this.createHls.bind(this); 66 | this.deleteHls = this.deleteHls.bind(this); 67 | } 68 | 69 | getRandomNum(targetNum = 32) { 70 | var chars = ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']; 71 | var nums=""; 72 | for(var i=0;i 248 | 251 | 256 | 请求返回的消息: 257 | 258 | {this.responseText} 259 | 260 | 261 | this.account = value} 266 | placeholder='请输入app账号' 267 | /> 268 | 1. 获取安全token 269 |