├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── quicksample │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── App.js ├── MainTabs.js ├── actions │ ├── index.js │ ├── list.js │ └── types.js ├── components │ └── ColorCircle.js ├── reducers │ ├── createReducer.js │ ├── index.js │ └── list.js └── screens │ ├── CounterScreen.js │ └── ListScreen.js ├── demo.gif ├── index.android.js ├── index.ios.js ├── ios ├── QuickSample-tvOS │ └── Info.plist ├── QuickSample-tvOSTests │ └── Info.plist ├── QuickSample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── QuickSample-tvOS.xcscheme │ │ └── QuickSample.xcscheme ├── QuickSample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── QuickSampleTests │ ├── Info.plist │ └── QuickSampleTests.m ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.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 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | munge_underscores=true 30 | 31 | 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' 32 | 33 | suppress_type=$FlowIssue 34 | suppress_type=$FlowFixMe 35 | suppress_type=$FixMe 36 | 37 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 41 | 42 | unsafe.enable_getters_and_setters=true 43 | 44 | [version] 45 | ^0.49.1 46 | -------------------------------------------------------------------------------- /.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://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 innFactory 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-quick-sample 2 | A small and simple example app with navigation, data persistence, listview and animation! 3 | 4 | 5 | demo 6 | 7 | ## Install and run on android 8 | ``` 9 | npm install -g react-native-cli 10 | cd react-native-quick-sample 11 | npm install 12 | react-native run-android 13 | ``` 14 | 15 | ## Install and run on ios 16 | ``` 17 | npm install -g react-native-cli 18 | cd react-native-quick-sample 19 | npm install 20 | react-native run-ios 21 | ``` 22 | 23 | [innFactory - iOS & Android Entwicklung](https://innFactory.de) 24 | 25 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /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.quicksample", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.quicksample", 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 | apply from: "../../node_modules/react-native/react.gradle" 76 | 77 | /** 78 | * Set this to true to create two separate APKs instead of one: 79 | * - An APK that only works on ARM devices 80 | * - An APK that only works on x86 devices 81 | * The advantage is the size of the APK is reduced by about 4MB. 82 | * Upload all the APKs to the Play Store and people will download 83 | * the correct one based on the CPU architecture of their device. 84 | */ 85 | def enableSeparateBuildPerCPUArchitecture = false 86 | 87 | /** 88 | * Run Proguard to shrink the Java bytecode in release builds. 89 | */ 90 | def enableProguardInReleaseBuilds = false 91 | 92 | android { 93 | compileSdkVersion 23 94 | buildToolsVersion "23.0.1" 95 | 96 | defaultConfig { 97 | applicationId "com.quicksample" 98 | minSdkVersion 16 99 | targetSdkVersion 22 100 | versionCode 1 101 | versionName "1.0" 102 | ndk { 103 | abiFilters "armeabi-v7a", "x86" 104 | } 105 | } 106 | splits { 107 | abi { 108 | reset() 109 | enable enableSeparateBuildPerCPUArchitecture 110 | universalApk false // If true, also generate a universal APK 111 | include "armeabi-v7a", "x86" 112 | } 113 | } 114 | buildTypes { 115 | release { 116 | minifyEnabled enableProguardInReleaseBuilds 117 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 118 | } 119 | } 120 | // applicationVariants are e.g. debug, release 121 | applicationVariants.all { variant -> 122 | variant.outputs.each { output -> 123 | // For each separate APK per architecture, set a unique version code as described here: 124 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 125 | def versionCodes = ["armeabi-v7a":1, "x86":2] 126 | def abi = output.getFilter(OutputFile.ABI) 127 | if (abi != null) { // null for the universal-debug, universal-release variants 128 | output.versionCodeOverride = 129 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 130 | } 131 | } 132 | } 133 | } 134 | 135 | dependencies { 136 | compile project(':react-native-vector-icons') 137 | compile fileTree(dir: "libs", include: ["*.jar"]) 138 | compile "com.android.support:appcompat-v7:23.0.1" 139 | compile "com.facebook.react:react-native:+" // From node_modules 140 | } 141 | 142 | // Run this once to be able to run the application with BUCK 143 | // puts all compile dependencies into folder libs for BUCK to use 144 | task copyDownloadableDepsToLibs(type: Copy) { 145 | from configurations.compile 146 | into 'libs' 147 | } 148 | -------------------------------------------------------------------------------- /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 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/quicksample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.quicksample; 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 "QuickSample"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/quicksample/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.quicksample; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage(), 27 | new VectorIconsPackage() 28 | ); 29 | } 30 | }; 31 | 32 | @Override 33 | public ReactNativeHost getReactNativeHost() { 34 | return mReactNativeHost; 35 | } 36 | 37 | @Override 38 | public void onCreate() { 39 | super.onCreate(); 40 | SoLoader.init(this, /* native exopackage */ false); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | QuickSample 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /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/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /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 = 'QuickSample' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "QuickSample", 3 | "displayName": "QuickSample" 4 | } -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 07.09.2017. 3 | */ 4 | import React from "react"; 5 | import {AsyncStorage} from "react-native"; 6 | import {Provider} from "react-redux"; 7 | import {applyMiddleware, combineReducers, compose, createStore} from "redux"; 8 | import {autoRehydrate, persistStore} from "redux-persist"; 9 | import MainTabs from "./MainTabs"; 10 | import {listReducer} from "./reducers"; 11 | import {createLogger} from "redux-logger"; 12 | import thunk from "redux-thunk"; 13 | 14 | 15 | const logger = createLogger({predicate: (getState, action) => __DEV__}); 16 | 17 | 18 | export default class App extends React.Component { 19 | 20 | constructor() { 21 | super(); 22 | this.state = { 23 | store: null, 24 | isLoading: true, 25 | }; 26 | } 27 | 28 | 29 | componentWillMount() { 30 | let reducer = combineReducers({ 31 | ...listReducer, 32 | }); 33 | 34 | 35 | let store = createStore(reducer, {}, compose(applyMiddleware(logger, thunk), autoRehydrate({log: true}))); 36 | let persistor = persistStore(store, { 37 | storage: AsyncStorage, 38 | }, () => this.setState({isLoading: false})); 39 | 40 | 41 | this.setState({store, persistor}); 42 | 43 | } 44 | 45 | render() { 46 | 47 | if (this.state.isLoading) { 48 | return null; 49 | } 50 | 51 | 52 | return ( 53 | 54 | 55 | 56 | ); 57 | } 58 | }; 59 | 60 | -------------------------------------------------------------------------------- /app/MainTabs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | import React from "react"; 6 | import {StackNavigator, TabNavigator} from "react-navigation"; 7 | 8 | 9 | import ListScreen from "./screens/ListScreen"; 10 | import CounterScreen from "./screens/CounterScreen"; 11 | 12 | import {bindActionCreators} from "redux"; 13 | import {connect} from "react-redux"; 14 | import {ActionCreators} from "./actions"; 15 | 16 | import Ionicons from 'react-native-vector-icons/Ionicons'; 17 | 18 | 19 | 20 | const ListTab = StackNavigator({ 21 | ListScreen: { 22 | screen: ListScreen, 23 | }, 24 | }); 25 | 26 | 27 | const MainTabs = TabNavigator({ 28 | CounterTab: { 29 | screen: CounterScreen, 30 | navigationOptions: { 31 | tabBarLabel: "Counter", 32 | tabBarIcon: ({tintColor, focused}) => ( 33 | 38 | ), 39 | }, 40 | }, 41 | 42 | ListTab: { 43 | screen: ListTab, 44 | navigationOptions: { 45 | tabBarLabel: "All Colors", 46 | tabBarIcon: ({tintColor, focused}) => ( 47 | 52 | ), 53 | }, 54 | }, 55 | 56 | }, { 57 | tabBarPosition: 'bottom', 58 | lazy: true, 59 | animationEnabled: true, 60 | swipeEnabled: true, 61 | tabBarOptions: { 62 | activeTintColor: 'red', 63 | inactiveTintColor: 'grey', 64 | showLabel: true, 65 | showIcon: true, 66 | pressColor: 'grey', 67 | upperCaseLabel: false, 68 | style: { 69 | backgroundColor: 'white', 70 | elevation: 20 71 | }, 72 | labelStyle: { 73 | fontSize: 10, 74 | margin: 0, 75 | }, 76 | indicatorStyle: { 77 | backgroundColor: "red" 78 | } 79 | } 80 | }); 81 | 82 | 83 | function mapDispatchToPros(dispatch) { 84 | return bindActionCreators(ActionCreators, dispatch); 85 | } 86 | export default connect((state) => {return {...state}}, mapDispatchToPros)(MainTabs); 87 | -------------------------------------------------------------------------------- /app/actions/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 07.09.2017. 3 | */ 4 | import * as ListActions from './list'; 5 | 6 | export const ActionCreators = Object.assign({}, 7 | ListActions, 8 | ); -------------------------------------------------------------------------------- /app/actions/list.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 07.09.2017. 3 | */ 4 | import * as types from './types'; 5 | const Color = require("pigment/full"); 6 | 7 | 8 | export function addRandomItem() { 9 | 10 | const item = { 11 | color: Color.random().tohex() 12 | }; 13 | 14 | return { 15 | type: types.ADD_ITEM, 16 | item, 17 | } 18 | } 19 | 20 | 21 | export function deleteAllItems() { 22 | 23 | return { 24 | type: types.DELETE_ALL_ITEMS, 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/actions/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 07.09.2017. 3 | */ 4 | 5 | export const ADD_ITEM = "ADD_ITEM"; 6 | export const DELETE_ALL_ITEMS = "DELETE_ALL_ITEMS"; 7 | 8 | -------------------------------------------------------------------------------- /app/components/ColorCircle.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from "react"; 2 | import {Dimensions, StyleSheet} from "react-native"; 3 | 4 | import * as Animatable from "react-native-animatable"; 5 | 6 | export default class ColorCircle extends Component { 7 | 8 | props: { 9 | color: string 10 | }; 11 | 12 | static defaultProps = {}; 13 | 14 | constructor() { 15 | super(); 16 | 17 | this.state = {}; 18 | } 19 | 20 | 21 | componentDidUpdate(prevProps, prevState) { 22 | 23 | this.refs.circle.rubberBand(400) 24 | } 25 | 26 | render() { 27 | 28 | const {height, width} = Dimensions.get('window'); 29 | 30 | let ratio; 31 | if (height>width) { 32 | ratio = width * 1.1; 33 | } else { 34 | ratio = height * 1.1; 35 | } 36 | 37 | return ( 38 | 41 | {this.props.children} 42 | 43 | ); 44 | } 45 | } 46 | 47 | 48 | const styles = StyleSheet.create({ 49 | 50 | circle: { 51 | borderWidth: 10, 52 | alignItems: "center", 53 | justifyContent: "center", 54 | backgroundColor: "#e8e8e8" 55 | }, 56 | }); 57 | -------------------------------------------------------------------------------- /app/reducers/createReducer.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 12.03.2017. 3 | */ 4 | export default function createReducer(initialState, handlers) { 5 | return function reducer(state = initialState, action) { 6 | if (handlers.hasOwnProperty(action.type)) { 7 | return handlers[action.type](state, action) 8 | } else { 9 | return state 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 07.09.2017. 3 | */ 4 | import * as listReducer from "./list"; 5 | 6 | export { 7 | listReducer 8 | }; -------------------------------------------------------------------------------- /app/reducers/list.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by toni on 07.09.2017. 3 | */ 4 | import createReducer from "./createReducer"; 5 | import * as types from "../actions/types"; 6 | 7 | 8 | export const list = createReducer([], { 9 | 10 | [types.ADD_ITEM](state, action) { 11 | return [...state, action.item]; 12 | }, 13 | 14 | [types.DELETE_ALL_ITEMS](state, action) { 15 | 16 | return []; 17 | }, 18 | }); 19 | 20 | 21 | export const listSize = createReducer(0, { 22 | [types.ADD_ITEM](state, action) { 23 | 24 | return ++state; 25 | }, 26 | 27 | [types.DELETE_ALL_ITEMS](state, action) { 28 | return 0; 29 | } 30 | }); -------------------------------------------------------------------------------- /app/screens/CounterScreen.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from "react"; 2 | import {StyleSheet, Text, TouchableOpacity, View} from "react-native"; 3 | 4 | 5 | import {bindActionCreators} from "redux"; 6 | import {connect} from "react-redux"; 7 | import {ActionCreators} from "../actions/index"; 8 | import ColorCircle from "../components/ColorCircle"; 9 | 10 | class CounterScreen extends Component { 11 | 12 | props: { 13 | list: [], 14 | listSize: number, 15 | addRandomItem: () => {}, 16 | }; 17 | 18 | constructor() { 19 | super(); 20 | 21 | } 22 | 23 | 24 | render() { 25 | 26 | const color = this.props.list.length > 0 ? this.props.list[this.props.list.length - 1].color : "#000000"; 27 | 28 | return ( 29 | 30 | 31 | 32 | {this.props.listSize} 33 | 34 | 35 | 36 | 37 | ADD RANDOM COLOR 38 | 39 | 40 | 41 | ); 42 | }; 43 | 44 | static navigationOptions = { 45 | header: null 46 | } 47 | } 48 | 49 | 50 | const styles = StyleSheet.create({ 51 | 52 | container: { 53 | 54 | flex: 1, 55 | alignItems: "center", 56 | justifyContent: "center", 57 | backgroundColor: "white" 58 | }, 59 | 60 | listSize: { 61 | color: "grey", 62 | 63 | }, 64 | 65 | countText: { 66 | color: "grey", 67 | fontSize: 40, 68 | fontWeight: "bold" 69 | }, 70 | 71 | button: { 72 | height: 50, 73 | paddingHorizontal: 30, 74 | backgroundColor: "red", 75 | borderRadius: 25, 76 | elevation: 3, 77 | margin: 15, 78 | alignItems: "center", 79 | justifyContent: "center", 80 | flexDirection: "row" 81 | }, 82 | 83 | buttonText: { 84 | color: "white", 85 | fontWeight: "bold" 86 | } 87 | }); 88 | 89 | function mapStateToProps(state) { 90 | return { 91 | list: state.list, 92 | listSize: state.listSize, 93 | } 94 | } 95 | function mapDispatchToPros(dispatch) { 96 | return bindActionCreators(ActionCreators, dispatch); 97 | } 98 | export default connect(mapStateToProps, mapDispatchToPros)(CounterScreen); 99 | -------------------------------------------------------------------------------- /app/screens/ListScreen.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from "react"; 2 | import {FlatList, StyleSheet, Text, TouchableOpacity, View} from "react-native"; 3 | 4 | 5 | import {bindActionCreators} from "redux"; 6 | import {connect} from "react-redux"; 7 | import {ActionCreators} from "../actions/index"; 8 | 9 | import Ionicons from "react-native-vector-icons/Ionicons"; 10 | 11 | class ListScreen extends Component { 12 | 13 | props: { 14 | list: [] 15 | }; 16 | 17 | 18 | constructor(props) { 19 | super(props); 20 | } 21 | 22 | componentDidMount() { 23 | this.props.navigation.setParams({deleteAllItems: this.props.deleteAllItems}); 24 | } 25 | 26 | render() { 27 | 28 | return ( 29 | 30 | { 32 | return {key: i.color, ...i} 33 | })} 34 | renderItem={this.renderItem} 35 | /> 36 | 37 | ); 38 | } 39 | 40 | renderItem({item}) { 41 | return ( 42 | 43 | {item.key} 44 | 45 | 46 | ) 47 | } 48 | 49 | static navigationOptions = ({ navigation }) => ({ 50 | title: "All Colors", 51 | headerRight: 52 | {navigation.state.params.deleteAllItems()}}> 53 | 58 | 59 | }) 60 | } 61 | 62 | 63 | const styles = StyleSheet.create({ 64 | 65 | container: { 66 | 67 | flex: 1, 68 | paddingTop: 5 69 | }, 70 | 71 | listItem: { 72 | height: 35, 73 | flexDirection: "row", 74 | backgroundColor: "white", 75 | marginBottom: 5, 76 | elevation: 2, 77 | alignItems: "center", 78 | padding: 5 79 | }, 80 | 81 | colorPreview: { 82 | height: 20, 83 | width: 20, 84 | } 85 | }); 86 | 87 | function mapStateToProps(state) { 88 | return { 89 | list: state.list, 90 | listSize: state.listSize, 91 | } 92 | } 93 | function mapDispatchToPros(dispatch) { 94 | return bindActionCreators(ActionCreators, dispatch); 95 | } 96 | export default connect(mapStateToProps, mapDispatchToPros)(ListScreen); 97 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innFactory/react-native-quick-sample/4f3e3801f1490223fd1632d95b9cfd1b68938adc/demo.gif -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import { 2 | AppRegistry, 3 | } from 'react-native'; 4 | 5 | import App from './app/App'; 6 | 7 | AppRegistry.registerComponent('QuickSample', () => App); 8 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import { 2 | AppRegistry, 3 | } from 'react-native'; 4 | 5 | import App from './app/App'; 6 | 7 | AppRegistry.registerComponent('QuickSample', () => App); -------------------------------------------------------------------------------- /ios/QuickSample-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/QuickSample-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/QuickSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* QuickSampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* QuickSampleTests.m */; }; 15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 25 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 26 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 27 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */; }; 28 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 29 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 30 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 31 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 32 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 33 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 34 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 35 | 2DCD954D1E0B4F2C00145EB5 /* QuickSampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* QuickSampleTests.m */; }; 36 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 37 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 38 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 39 | E153F0FAAF024952A0EEFCC4 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 705EAAF099D0480A916A0900 /* libRNVectorIcons.a */; }; 40 | D4AA9DC4E56F4407B68E9C00 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C23208F7A0164339831F4AF0 /* Entypo.ttf */; }; 41 | 0D77CB954BAB44C9993A7607 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B2BED23972FD491A86D4CD11 /* EvilIcons.ttf */; }; 42 | 358DCAA4E6104740A514EAA3 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E06BEF58BF894C2A9A51A8C2 /* FontAwesome.ttf */; }; 43 | 12C19DF9D3D243EFB7A9901E /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FDAB74CAB3924746AF4FFC28 /* Foundation.ttf */; }; 44 | 6A01BF0FAAAE43C3B400B03D /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9214BC337B184C78B1EED23E /* Ionicons.ttf */; }; 45 | 8D29CC74837843B695364B8E /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1B52121C2A28405E9B651DA5 /* MaterialCommunityIcons.ttf */; }; 46 | 374EDF2A9F334D2D9F9FF0D7 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0108B87FAB8C45EFADA049BB /* MaterialIcons.ttf */; }; 47 | D270BEA6B9D24189A2F029B2 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 73DC9BB56D2D486A90A9EDED /* Octicons.ttf */; }; 48 | 67EC8A43255042F59290D932 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 11A2BA9BDDB84B1892BC39CF /* SimpleLineIcons.ttf */; }; 49 | 16FEC17683A242B2B43D2440 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DB245F9D9F02422E89997EB8 /* Zocial.ttf */; }; 50 | /* End PBXBuildFile section */ 51 | 52 | /* Begin PBXContainerItemProxy section */ 53 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 54 | isa = PBXContainerItemProxy; 55 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 56 | proxyType = 2; 57 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 58 | remoteInfo = RCTActionSheet; 59 | }; 60 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 65 | remoteInfo = RCTGeolocation; 66 | }; 67 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 72 | remoteInfo = RCTImage; 73 | }; 74 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 79 | remoteInfo = RCTNetwork; 80 | }; 81 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 84 | proxyType = 2; 85 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 86 | remoteInfo = RCTVibration; 87 | }; 88 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 91 | proxyType = 1; 92 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 93 | remoteInfo = QuickSample; 94 | }; 95 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 98 | proxyType = 2; 99 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 100 | remoteInfo = RCTSettings; 101 | }; 102 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 107 | remoteInfo = RCTWebSocket; 108 | }; 109 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 112 | proxyType = 2; 113 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 114 | remoteInfo = React; 115 | }; 116 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 119 | proxyType = 1; 120 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 121 | remoteInfo = "QuickSample-tvOS"; 122 | }; 123 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 126 | proxyType = 2; 127 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 128 | remoteInfo = "RCTImage-tvOS"; 129 | }; 130 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 135 | remoteInfo = "RCTLinking-tvOS"; 136 | }; 137 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 142 | remoteInfo = "RCTNetwork-tvOS"; 143 | }; 144 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 149 | remoteInfo = "RCTSettings-tvOS"; 150 | }; 151 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 156 | remoteInfo = "RCTText-tvOS"; 157 | }; 158 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 163 | remoteInfo = "RCTWebSocket-tvOS"; 164 | }; 165 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 170 | remoteInfo = "React-tvOS"; 171 | }; 172 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 177 | remoteInfo = yoga; 178 | }; 179 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 184 | remoteInfo = "yoga-tvOS"; 185 | }; 186 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 191 | remoteInfo = cxxreact; 192 | }; 193 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 198 | remoteInfo = "cxxreact-tvOS"; 199 | }; 200 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 205 | remoteInfo = jschelpers; 206 | }; 207 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 212 | remoteInfo = "jschelpers-tvOS"; 213 | }; 214 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 219 | remoteInfo = RCTAnimation; 220 | }; 221 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 226 | remoteInfo = "RCTAnimation-tvOS"; 227 | }; 228 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 233 | remoteInfo = RCTLinking; 234 | }; 235 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 240 | remoteInfo = RCTText; 241 | }; 242 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 243 | isa = PBXContainerItemProxy; 244 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 245 | proxyType = 2; 246 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 247 | remoteInfo = RCTBlob; 248 | }; 249 | /* End PBXContainerItemProxy section */ 250 | 251 | /* Begin PBXFileReference section */ 252 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 253 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 254 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 255 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 256 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 257 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 258 | 00E356EE1AD99517003FC87E /* QuickSampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = QuickSampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 259 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 260 | 00E356F21AD99517003FC87E /* QuickSampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QuickSampleTests.m; sourceTree = ""; }; 261 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 262 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 263 | 13B07F961A680F5B00A75B9A /* QuickSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = QuickSample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 264 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = QuickSample/AppDelegate.h; sourceTree = ""; }; 265 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = QuickSample/AppDelegate.m; sourceTree = ""; }; 266 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 267 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = QuickSample/Images.xcassets; sourceTree = ""; }; 268 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = QuickSample/Info.plist; sourceTree = ""; }; 269 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = QuickSample/main.m; sourceTree = ""; }; 270 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 271 | 2D02E47B1E0B4A5D006451C7 /* QuickSample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "QuickSample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 272 | 2D02E4901E0B4A5D006451C7 /* QuickSample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "QuickSample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 273 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 274 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 275 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 276 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 277 | B808C824318A409AB7C1F5C6 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 278 | 705EAAF099D0480A916A0900 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 279 | C23208F7A0164339831F4AF0 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 280 | B2BED23972FD491A86D4CD11 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 281 | E06BEF58BF894C2A9A51A8C2 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 282 | FDAB74CAB3924746AF4FFC28 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 283 | 9214BC337B184C78B1EED23E /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 284 | 1B52121C2A28405E9B651DA5 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 285 | 0108B87FAB8C45EFADA049BB /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 286 | 73DC9BB56D2D486A90A9EDED /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 287 | 11A2BA9BDDB84B1892BC39CF /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 288 | DB245F9D9F02422E89997EB8 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 289 | /* End PBXFileReference section */ 290 | 291 | /* Begin PBXFrameworksBuildPhase section */ 292 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 293 | isa = PBXFrameworksBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | }; 300 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 301 | isa = PBXFrameworksBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 305 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 306 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 307 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 308 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 309 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 310 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 311 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 312 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 313 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 314 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 315 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 316 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 317 | E153F0FAAF024952A0EEFCC4 /* libRNVectorIcons.a in Frameworks */, 318 | ); 319 | runOnlyForDeploymentPostprocessing = 0; 320 | }; 321 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 322 | isa = PBXFrameworksBuildPhase; 323 | buildActionMask = 2147483647; 324 | files = ( 325 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 326 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 327 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 328 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 329 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 330 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 331 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 332 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 333 | ); 334 | runOnlyForDeploymentPostprocessing = 0; 335 | }; 336 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 337 | isa = PBXFrameworksBuildPhase; 338 | buildActionMask = 2147483647; 339 | files = ( 340 | ); 341 | runOnlyForDeploymentPostprocessing = 0; 342 | }; 343 | /* End PBXFrameworksBuildPhase section */ 344 | 345 | /* Begin PBXGroup section */ 346 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 347 | isa = PBXGroup; 348 | children = ( 349 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 350 | ); 351 | name = Products; 352 | sourceTree = ""; 353 | }; 354 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 355 | isa = PBXGroup; 356 | children = ( 357 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 358 | ); 359 | name = Products; 360 | sourceTree = ""; 361 | }; 362 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 363 | isa = PBXGroup; 364 | children = ( 365 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 366 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 367 | ); 368 | name = Products; 369 | sourceTree = ""; 370 | }; 371 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 372 | isa = PBXGroup; 373 | children = ( 374 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 375 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 376 | ); 377 | name = Products; 378 | sourceTree = ""; 379 | }; 380 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 381 | isa = PBXGroup; 382 | children = ( 383 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 384 | ); 385 | name = Products; 386 | sourceTree = ""; 387 | }; 388 | 00E356EF1AD99517003FC87E /* QuickSampleTests */ = { 389 | isa = PBXGroup; 390 | children = ( 391 | 00E356F21AD99517003FC87E /* QuickSampleTests.m */, 392 | 00E356F01AD99517003FC87E /* Supporting Files */, 393 | ); 394 | path = QuickSampleTests; 395 | sourceTree = ""; 396 | }; 397 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 398 | isa = PBXGroup; 399 | children = ( 400 | 00E356F11AD99517003FC87E /* Info.plist */, 401 | ); 402 | name = "Supporting Files"; 403 | sourceTree = ""; 404 | }; 405 | 139105B71AF99BAD00B5F7CC /* Products */ = { 406 | isa = PBXGroup; 407 | children = ( 408 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 409 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 410 | ); 411 | name = Products; 412 | sourceTree = ""; 413 | }; 414 | 139FDEE71B06529A00C62182 /* Products */ = { 415 | isa = PBXGroup; 416 | children = ( 417 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 418 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 419 | ); 420 | name = Products; 421 | sourceTree = ""; 422 | }; 423 | 13B07FAE1A68108700A75B9A /* QuickSample */ = { 424 | isa = PBXGroup; 425 | children = ( 426 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 427 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 428 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 429 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 430 | 13B07FB61A68108700A75B9A /* Info.plist */, 431 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 432 | 13B07FB71A68108700A75B9A /* main.m */, 433 | ); 434 | name = QuickSample; 435 | sourceTree = ""; 436 | }; 437 | 146834001AC3E56700842450 /* Products */ = { 438 | isa = PBXGroup; 439 | children = ( 440 | 146834041AC3E56700842450 /* libReact.a */, 441 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 442 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 443 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 444 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 445 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 446 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 447 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 448 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */, 449 | ); 450 | name = Products; 451 | sourceTree = ""; 452 | }; 453 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 454 | isa = PBXGroup; 455 | children = ( 456 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 457 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 458 | ); 459 | name = Products; 460 | sourceTree = ""; 461 | }; 462 | 78C398B11ACF4ADC00677621 /* Products */ = { 463 | isa = PBXGroup; 464 | children = ( 465 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 466 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 467 | ); 468 | name = Products; 469 | sourceTree = ""; 470 | }; 471 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 472 | isa = PBXGroup; 473 | children = ( 474 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 475 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 476 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 477 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 478 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 479 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 480 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 481 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 482 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 483 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 484 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 485 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 486 | B808C824318A409AB7C1F5C6 /* RNVectorIcons.xcodeproj */, 487 | ); 488 | name = Libraries; 489 | sourceTree = ""; 490 | }; 491 | 832341B11AAA6A8300B99B32 /* Products */ = { 492 | isa = PBXGroup; 493 | children = ( 494 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 495 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 496 | ); 497 | name = Products; 498 | sourceTree = ""; 499 | }; 500 | 83CBB9F61A601CBA00E9B192 = { 501 | isa = PBXGroup; 502 | children = ( 503 | 13B07FAE1A68108700A75B9A /* QuickSample */, 504 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 505 | 00E356EF1AD99517003FC87E /* QuickSampleTests */, 506 | 83CBBA001A601CBA00E9B192 /* Products */, 507 | B5DFE96370AB43C582CB3635 /* Resources */, 508 | ); 509 | indentWidth = 2; 510 | sourceTree = ""; 511 | tabWidth = 2; 512 | usesTabs = 0; 513 | }; 514 | 83CBBA001A601CBA00E9B192 /* Products */ = { 515 | isa = PBXGroup; 516 | children = ( 517 | 13B07F961A680F5B00A75B9A /* QuickSample.app */, 518 | 00E356EE1AD99517003FC87E /* QuickSampleTests.xctest */, 519 | 2D02E47B1E0B4A5D006451C7 /* QuickSample-tvOS.app */, 520 | 2D02E4901E0B4A5D006451C7 /* QuickSample-tvOSTests.xctest */, 521 | ); 522 | name = Products; 523 | sourceTree = ""; 524 | }; 525 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 526 | isa = PBXGroup; 527 | children = ( 528 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 529 | ); 530 | name = Products; 531 | sourceTree = ""; 532 | }; 533 | B5DFE96370AB43C582CB3635 /* Resources */ = { 534 | isa = "PBXGroup"; 535 | children = ( 536 | C23208F7A0164339831F4AF0 /* Entypo.ttf */, 537 | B2BED23972FD491A86D4CD11 /* EvilIcons.ttf */, 538 | E06BEF58BF894C2A9A51A8C2 /* FontAwesome.ttf */, 539 | FDAB74CAB3924746AF4FFC28 /* Foundation.ttf */, 540 | 9214BC337B184C78B1EED23E /* Ionicons.ttf */, 541 | 1B52121C2A28405E9B651DA5 /* MaterialCommunityIcons.ttf */, 542 | 0108B87FAB8C45EFADA049BB /* MaterialIcons.ttf */, 543 | 73DC9BB56D2D486A90A9EDED /* Octicons.ttf */, 544 | 11A2BA9BDDB84B1892BC39CF /* SimpleLineIcons.ttf */, 545 | DB245F9D9F02422E89997EB8 /* Zocial.ttf */, 546 | ); 547 | name = Resources; 548 | sourceTree = ""; 549 | path = ""; 550 | }; 551 | /* End PBXGroup section */ 552 | 553 | /* Begin PBXNativeTarget section */ 554 | 00E356ED1AD99517003FC87E /* QuickSampleTests */ = { 555 | isa = PBXNativeTarget; 556 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "QuickSampleTests" */; 557 | buildPhases = ( 558 | 00E356EA1AD99517003FC87E /* Sources */, 559 | 00E356EB1AD99517003FC87E /* Frameworks */, 560 | 00E356EC1AD99517003FC87E /* Resources */, 561 | ); 562 | buildRules = ( 563 | ); 564 | dependencies = ( 565 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 566 | ); 567 | name = QuickSampleTests; 568 | productName = QuickSampleTests; 569 | productReference = 00E356EE1AD99517003FC87E /* QuickSampleTests.xctest */; 570 | productType = "com.apple.product-type.bundle.unit-test"; 571 | }; 572 | 13B07F861A680F5B00A75B9A /* QuickSample */ = { 573 | isa = PBXNativeTarget; 574 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "QuickSample" */; 575 | buildPhases = ( 576 | 13B07F871A680F5B00A75B9A /* Sources */, 577 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 578 | 13B07F8E1A680F5B00A75B9A /* Resources */, 579 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 580 | ); 581 | buildRules = ( 582 | ); 583 | dependencies = ( 584 | ); 585 | name = QuickSample; 586 | productName = "Hello World"; 587 | productReference = 13B07F961A680F5B00A75B9A /* QuickSample.app */; 588 | productType = "com.apple.product-type.application"; 589 | }; 590 | 2D02E47A1E0B4A5D006451C7 /* QuickSample-tvOS */ = { 591 | isa = PBXNativeTarget; 592 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "QuickSample-tvOS" */; 593 | buildPhases = ( 594 | 2D02E4771E0B4A5D006451C7 /* Sources */, 595 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 596 | 2D02E4791E0B4A5D006451C7 /* Resources */, 597 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 598 | ); 599 | buildRules = ( 600 | ); 601 | dependencies = ( 602 | ); 603 | name = "QuickSample-tvOS"; 604 | productName = "QuickSample-tvOS"; 605 | productReference = 2D02E47B1E0B4A5D006451C7 /* QuickSample-tvOS.app */; 606 | productType = "com.apple.product-type.application"; 607 | }; 608 | 2D02E48F1E0B4A5D006451C7 /* QuickSample-tvOSTests */ = { 609 | isa = PBXNativeTarget; 610 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "QuickSample-tvOSTests" */; 611 | buildPhases = ( 612 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 613 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 614 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 615 | ); 616 | buildRules = ( 617 | ); 618 | dependencies = ( 619 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 620 | ); 621 | name = "QuickSample-tvOSTests"; 622 | productName = "QuickSample-tvOSTests"; 623 | productReference = 2D02E4901E0B4A5D006451C7 /* QuickSample-tvOSTests.xctest */; 624 | productType = "com.apple.product-type.bundle.unit-test"; 625 | }; 626 | /* End PBXNativeTarget section */ 627 | 628 | /* Begin PBXProject section */ 629 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 630 | isa = PBXProject; 631 | attributes = { 632 | LastUpgradeCheck = 610; 633 | ORGANIZATIONNAME = Facebook; 634 | TargetAttributes = { 635 | 00E356ED1AD99517003FC87E = { 636 | CreatedOnToolsVersion = 6.2; 637 | TestTargetID = 13B07F861A680F5B00A75B9A; 638 | }; 639 | 2D02E47A1E0B4A5D006451C7 = { 640 | CreatedOnToolsVersion = 8.2.1; 641 | ProvisioningStyle = Automatic; 642 | }; 643 | 2D02E48F1E0B4A5D006451C7 = { 644 | CreatedOnToolsVersion = 8.2.1; 645 | ProvisioningStyle = Automatic; 646 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 647 | }; 648 | }; 649 | }; 650 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "QuickSample" */; 651 | compatibilityVersion = "Xcode 3.2"; 652 | developmentRegion = English; 653 | hasScannedForEncodings = 0; 654 | knownRegions = ( 655 | en, 656 | Base, 657 | ); 658 | mainGroup = 83CBB9F61A601CBA00E9B192; 659 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 660 | projectDirPath = ""; 661 | projectReferences = ( 662 | { 663 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 664 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 665 | }, 666 | { 667 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 668 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 669 | }, 670 | { 671 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 672 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 673 | }, 674 | { 675 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 676 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 677 | }, 678 | { 679 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 680 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 681 | }, 682 | { 683 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 684 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 685 | }, 686 | { 687 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 688 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 689 | }, 690 | { 691 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 692 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 693 | }, 694 | { 695 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 696 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 697 | }, 698 | { 699 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 700 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 701 | }, 702 | { 703 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 704 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 705 | }, 706 | { 707 | ProductGroup = 146834001AC3E56700842450 /* Products */; 708 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 709 | }, 710 | ); 711 | projectRoot = ""; 712 | targets = ( 713 | 13B07F861A680F5B00A75B9A /* QuickSample */, 714 | 00E356ED1AD99517003FC87E /* QuickSampleTests */, 715 | 2D02E47A1E0B4A5D006451C7 /* QuickSample-tvOS */, 716 | 2D02E48F1E0B4A5D006451C7 /* QuickSample-tvOSTests */, 717 | ); 718 | }; 719 | /* End PBXProject section */ 720 | 721 | /* Begin PBXReferenceProxy section */ 722 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 723 | isa = PBXReferenceProxy; 724 | fileType = archive.ar; 725 | path = libRCTActionSheet.a; 726 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 727 | sourceTree = BUILT_PRODUCTS_DIR; 728 | }; 729 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 730 | isa = PBXReferenceProxy; 731 | fileType = archive.ar; 732 | path = libRCTGeolocation.a; 733 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 734 | sourceTree = BUILT_PRODUCTS_DIR; 735 | }; 736 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 737 | isa = PBXReferenceProxy; 738 | fileType = archive.ar; 739 | path = libRCTImage.a; 740 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 741 | sourceTree = BUILT_PRODUCTS_DIR; 742 | }; 743 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 744 | isa = PBXReferenceProxy; 745 | fileType = archive.ar; 746 | path = libRCTNetwork.a; 747 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 748 | sourceTree = BUILT_PRODUCTS_DIR; 749 | }; 750 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 751 | isa = PBXReferenceProxy; 752 | fileType = archive.ar; 753 | path = libRCTVibration.a; 754 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 755 | sourceTree = BUILT_PRODUCTS_DIR; 756 | }; 757 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 758 | isa = PBXReferenceProxy; 759 | fileType = archive.ar; 760 | path = libRCTSettings.a; 761 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 762 | sourceTree = BUILT_PRODUCTS_DIR; 763 | }; 764 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 765 | isa = PBXReferenceProxy; 766 | fileType = archive.ar; 767 | path = libRCTWebSocket.a; 768 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 769 | sourceTree = BUILT_PRODUCTS_DIR; 770 | }; 771 | 146834041AC3E56700842450 /* libReact.a */ = { 772 | isa = PBXReferenceProxy; 773 | fileType = archive.ar; 774 | path = libReact.a; 775 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 776 | sourceTree = BUILT_PRODUCTS_DIR; 777 | }; 778 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 779 | isa = PBXReferenceProxy; 780 | fileType = archive.ar; 781 | path = "libRCTImage-tvOS.a"; 782 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 783 | sourceTree = BUILT_PRODUCTS_DIR; 784 | }; 785 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 786 | isa = PBXReferenceProxy; 787 | fileType = archive.ar; 788 | path = "libRCTLinking-tvOS.a"; 789 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 790 | sourceTree = BUILT_PRODUCTS_DIR; 791 | }; 792 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 793 | isa = PBXReferenceProxy; 794 | fileType = archive.ar; 795 | path = "libRCTNetwork-tvOS.a"; 796 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 797 | sourceTree = BUILT_PRODUCTS_DIR; 798 | }; 799 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 800 | isa = PBXReferenceProxy; 801 | fileType = archive.ar; 802 | path = "libRCTSettings-tvOS.a"; 803 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 804 | sourceTree = BUILT_PRODUCTS_DIR; 805 | }; 806 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 807 | isa = PBXReferenceProxy; 808 | fileType = archive.ar; 809 | path = "libRCTText-tvOS.a"; 810 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 811 | sourceTree = BUILT_PRODUCTS_DIR; 812 | }; 813 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 814 | isa = PBXReferenceProxy; 815 | fileType = archive.ar; 816 | path = "libRCTWebSocket-tvOS.a"; 817 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 818 | sourceTree = BUILT_PRODUCTS_DIR; 819 | }; 820 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */ = { 821 | isa = PBXReferenceProxy; 822 | fileType = archive.ar; 823 | path = "libReact-tvOS.a"; 824 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 825 | sourceTree = BUILT_PRODUCTS_DIR; 826 | }; 827 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 828 | isa = PBXReferenceProxy; 829 | fileType = archive.ar; 830 | path = libyoga.a; 831 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 832 | sourceTree = BUILT_PRODUCTS_DIR; 833 | }; 834 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 835 | isa = PBXReferenceProxy; 836 | fileType = archive.ar; 837 | path = libyoga.a; 838 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 839 | sourceTree = BUILT_PRODUCTS_DIR; 840 | }; 841 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 842 | isa = PBXReferenceProxy; 843 | fileType = archive.ar; 844 | path = libcxxreact.a; 845 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 846 | sourceTree = BUILT_PRODUCTS_DIR; 847 | }; 848 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 849 | isa = PBXReferenceProxy; 850 | fileType = archive.ar; 851 | path = libcxxreact.a; 852 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 853 | sourceTree = BUILT_PRODUCTS_DIR; 854 | }; 855 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 856 | isa = PBXReferenceProxy; 857 | fileType = archive.ar; 858 | path = libjschelpers.a; 859 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 860 | sourceTree = BUILT_PRODUCTS_DIR; 861 | }; 862 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 863 | isa = PBXReferenceProxy; 864 | fileType = archive.ar; 865 | path = libjschelpers.a; 866 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 867 | sourceTree = BUILT_PRODUCTS_DIR; 868 | }; 869 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 870 | isa = PBXReferenceProxy; 871 | fileType = archive.ar; 872 | path = libRCTAnimation.a; 873 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 874 | sourceTree = BUILT_PRODUCTS_DIR; 875 | }; 876 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 877 | isa = PBXReferenceProxy; 878 | fileType = archive.ar; 879 | path = "libRCTAnimation-tvOS.a"; 880 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 881 | sourceTree = BUILT_PRODUCTS_DIR; 882 | }; 883 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 884 | isa = PBXReferenceProxy; 885 | fileType = archive.ar; 886 | path = libRCTLinking.a; 887 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 888 | sourceTree = BUILT_PRODUCTS_DIR; 889 | }; 890 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 891 | isa = PBXReferenceProxy; 892 | fileType = archive.ar; 893 | path = libRCTText.a; 894 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 895 | sourceTree = BUILT_PRODUCTS_DIR; 896 | }; 897 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 898 | isa = PBXReferenceProxy; 899 | fileType = archive.ar; 900 | path = libRCTBlob.a; 901 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 902 | sourceTree = BUILT_PRODUCTS_DIR; 903 | }; 904 | /* End PBXReferenceProxy section */ 905 | 906 | /* Begin PBXResourcesBuildPhase section */ 907 | 00E356EC1AD99517003FC87E /* Resources */ = { 908 | isa = PBXResourcesBuildPhase; 909 | buildActionMask = 2147483647; 910 | files = ( 911 | ); 912 | runOnlyForDeploymentPostprocessing = 0; 913 | }; 914 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 915 | isa = PBXResourcesBuildPhase; 916 | buildActionMask = 2147483647; 917 | files = ( 918 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 919 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 920 | D4AA9DC4E56F4407B68E9C00 /* Entypo.ttf in Resources */, 921 | 0D77CB954BAB44C9993A7607 /* EvilIcons.ttf in Resources */, 922 | 358DCAA4E6104740A514EAA3 /* FontAwesome.ttf in Resources */, 923 | 12C19DF9D3D243EFB7A9901E /* Foundation.ttf in Resources */, 924 | 6A01BF0FAAAE43C3B400B03D /* Ionicons.ttf in Resources */, 925 | 8D29CC74837843B695364B8E /* MaterialCommunityIcons.ttf in Resources */, 926 | 374EDF2A9F334D2D9F9FF0D7 /* MaterialIcons.ttf in Resources */, 927 | D270BEA6B9D24189A2F029B2 /* Octicons.ttf in Resources */, 928 | 67EC8A43255042F59290D932 /* SimpleLineIcons.ttf in Resources */, 929 | 16FEC17683A242B2B43D2440 /* Zocial.ttf in Resources */, 930 | ); 931 | runOnlyForDeploymentPostprocessing = 0; 932 | }; 933 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 934 | isa = PBXResourcesBuildPhase; 935 | buildActionMask = 2147483647; 936 | files = ( 937 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 938 | ); 939 | runOnlyForDeploymentPostprocessing = 0; 940 | }; 941 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 942 | isa = PBXResourcesBuildPhase; 943 | buildActionMask = 2147483647; 944 | files = ( 945 | ); 946 | runOnlyForDeploymentPostprocessing = 0; 947 | }; 948 | /* End PBXResourcesBuildPhase section */ 949 | 950 | /* Begin PBXShellScriptBuildPhase section */ 951 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 952 | isa = PBXShellScriptBuildPhase; 953 | buildActionMask = 2147483647; 954 | files = ( 955 | ); 956 | inputPaths = ( 957 | ); 958 | name = "Bundle React Native code and images"; 959 | outputPaths = ( 960 | ); 961 | runOnlyForDeploymentPostprocessing = 0; 962 | shellPath = /bin/sh; 963 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 964 | }; 965 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 966 | isa = PBXShellScriptBuildPhase; 967 | buildActionMask = 2147483647; 968 | files = ( 969 | ); 970 | inputPaths = ( 971 | ); 972 | name = "Bundle React Native Code And Images"; 973 | outputPaths = ( 974 | ); 975 | runOnlyForDeploymentPostprocessing = 0; 976 | shellPath = /bin/sh; 977 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 978 | }; 979 | /* End PBXShellScriptBuildPhase section */ 980 | 981 | /* Begin PBXSourcesBuildPhase section */ 982 | 00E356EA1AD99517003FC87E /* Sources */ = { 983 | isa = PBXSourcesBuildPhase; 984 | buildActionMask = 2147483647; 985 | files = ( 986 | 00E356F31AD99517003FC87E /* QuickSampleTests.m in Sources */, 987 | ); 988 | runOnlyForDeploymentPostprocessing = 0; 989 | }; 990 | 13B07F871A680F5B00A75B9A /* Sources */ = { 991 | isa = PBXSourcesBuildPhase; 992 | buildActionMask = 2147483647; 993 | files = ( 994 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 995 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 996 | ); 997 | runOnlyForDeploymentPostprocessing = 0; 998 | }; 999 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1000 | isa = PBXSourcesBuildPhase; 1001 | buildActionMask = 2147483647; 1002 | files = ( 1003 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1004 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1005 | ); 1006 | runOnlyForDeploymentPostprocessing = 0; 1007 | }; 1008 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1009 | isa = PBXSourcesBuildPhase; 1010 | buildActionMask = 2147483647; 1011 | files = ( 1012 | 2DCD954D1E0B4F2C00145EB5 /* QuickSampleTests.m in Sources */, 1013 | ); 1014 | runOnlyForDeploymentPostprocessing = 0; 1015 | }; 1016 | /* End PBXSourcesBuildPhase section */ 1017 | 1018 | /* Begin PBXTargetDependency section */ 1019 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1020 | isa = PBXTargetDependency; 1021 | target = 13B07F861A680F5B00A75B9A /* QuickSample */; 1022 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1023 | }; 1024 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1025 | isa = PBXTargetDependency; 1026 | target = 2D02E47A1E0B4A5D006451C7 /* QuickSample-tvOS */; 1027 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1028 | }; 1029 | /* End PBXTargetDependency section */ 1030 | 1031 | /* Begin PBXVariantGroup section */ 1032 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1033 | isa = PBXVariantGroup; 1034 | children = ( 1035 | 13B07FB21A68108700A75B9A /* Base */, 1036 | ); 1037 | name = LaunchScreen.xib; 1038 | path = QuickSample; 1039 | sourceTree = ""; 1040 | }; 1041 | /* End PBXVariantGroup section */ 1042 | 1043 | /* Begin XCBuildConfiguration section */ 1044 | 00E356F61AD99517003FC87E /* Debug */ = { 1045 | isa = XCBuildConfiguration; 1046 | buildSettings = { 1047 | BUNDLE_LOADER = "$(TEST_HOST)"; 1048 | GCC_PREPROCESSOR_DEFINITIONS = ( 1049 | "DEBUG=1", 1050 | "$(inherited)", 1051 | ); 1052 | INFOPLIST_FILE = QuickSampleTests/Info.plist; 1053 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1054 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1055 | OTHER_LDFLAGS = ( 1056 | "-ObjC", 1057 | "-lc++", 1058 | ); 1059 | PRODUCT_NAME = "$(TARGET_NAME)"; 1060 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QuickSample.app/QuickSample"; 1061 | LIBRARY_SEARCH_PATHS = ( 1062 | "$(inherited)", 1063 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1064 | ); 1065 | HEADER_SEARCH_PATHS = ( 1066 | "$(inherited)", 1067 | "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", 1068 | ); 1069 | }; 1070 | name = Debug; 1071 | }; 1072 | 00E356F71AD99517003FC87E /* Release */ = { 1073 | isa = XCBuildConfiguration; 1074 | buildSettings = { 1075 | BUNDLE_LOADER = "$(TEST_HOST)"; 1076 | COPY_PHASE_STRIP = NO; 1077 | INFOPLIST_FILE = QuickSampleTests/Info.plist; 1078 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1079 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1080 | OTHER_LDFLAGS = ( 1081 | "-ObjC", 1082 | "-lc++", 1083 | ); 1084 | PRODUCT_NAME = "$(TARGET_NAME)"; 1085 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QuickSample.app/QuickSample"; 1086 | LIBRARY_SEARCH_PATHS = ( 1087 | "$(inherited)", 1088 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1089 | ); 1090 | HEADER_SEARCH_PATHS = ( 1091 | "$(inherited)", 1092 | "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", 1093 | ); 1094 | }; 1095 | name = Release; 1096 | }; 1097 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1098 | isa = XCBuildConfiguration; 1099 | buildSettings = { 1100 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1101 | CURRENT_PROJECT_VERSION = 1; 1102 | DEAD_CODE_STRIPPING = NO; 1103 | INFOPLIST_FILE = QuickSample/Info.plist; 1104 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1105 | OTHER_LDFLAGS = ( 1106 | "$(inherited)", 1107 | "-ObjC", 1108 | "-lc++", 1109 | ); 1110 | PRODUCT_NAME = QuickSample; 1111 | VERSIONING_SYSTEM = "apple-generic"; 1112 | HEADER_SEARCH_PATHS = ( 1113 | "$(inherited)", 1114 | "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", 1115 | ); 1116 | }; 1117 | name = Debug; 1118 | }; 1119 | 13B07F951A680F5B00A75B9A /* Release */ = { 1120 | isa = XCBuildConfiguration; 1121 | buildSettings = { 1122 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1123 | CURRENT_PROJECT_VERSION = 1; 1124 | INFOPLIST_FILE = QuickSample/Info.plist; 1125 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1126 | OTHER_LDFLAGS = ( 1127 | "$(inherited)", 1128 | "-ObjC", 1129 | "-lc++", 1130 | ); 1131 | PRODUCT_NAME = QuickSample; 1132 | VERSIONING_SYSTEM = "apple-generic"; 1133 | HEADER_SEARCH_PATHS = ( 1134 | "$(inherited)", 1135 | "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", 1136 | ); 1137 | }; 1138 | name = Release; 1139 | }; 1140 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1141 | isa = XCBuildConfiguration; 1142 | buildSettings = { 1143 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1144 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1145 | CLANG_ANALYZER_NONNULL = YES; 1146 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1147 | CLANG_WARN_INFINITE_RECURSION = YES; 1148 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1149 | DEBUG_INFORMATION_FORMAT = dwarf; 1150 | ENABLE_TESTABILITY = YES; 1151 | GCC_NO_COMMON_BLOCKS = YES; 1152 | INFOPLIST_FILE = "QuickSample-tvOS/Info.plist"; 1153 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1154 | OTHER_LDFLAGS = ( 1155 | "-ObjC", 1156 | "-lc++", 1157 | ); 1158 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.QuickSample-tvOS"; 1159 | PRODUCT_NAME = "$(TARGET_NAME)"; 1160 | SDKROOT = appletvos; 1161 | TARGETED_DEVICE_FAMILY = 3; 1162 | TVOS_DEPLOYMENT_TARGET = 9.2; 1163 | LIBRARY_SEARCH_PATHS = ( 1164 | "$(inherited)", 1165 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1166 | ); 1167 | HEADER_SEARCH_PATHS = ( 1168 | "$(inherited)", 1169 | "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", 1170 | ); 1171 | }; 1172 | name = Debug; 1173 | }; 1174 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1175 | isa = XCBuildConfiguration; 1176 | buildSettings = { 1177 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1178 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1179 | CLANG_ANALYZER_NONNULL = YES; 1180 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1181 | CLANG_WARN_INFINITE_RECURSION = YES; 1182 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1183 | COPY_PHASE_STRIP = NO; 1184 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1185 | GCC_NO_COMMON_BLOCKS = YES; 1186 | INFOPLIST_FILE = "QuickSample-tvOS/Info.plist"; 1187 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1188 | OTHER_LDFLAGS = ( 1189 | "-ObjC", 1190 | "-lc++", 1191 | ); 1192 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.QuickSample-tvOS"; 1193 | PRODUCT_NAME = "$(TARGET_NAME)"; 1194 | SDKROOT = appletvos; 1195 | TARGETED_DEVICE_FAMILY = 3; 1196 | TVOS_DEPLOYMENT_TARGET = 9.2; 1197 | LIBRARY_SEARCH_PATHS = ( 1198 | "$(inherited)", 1199 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1200 | ); 1201 | HEADER_SEARCH_PATHS = ( 1202 | "$(inherited)", 1203 | "$(SRCROOT)\..\node_modules\react-native-vector-icons\RNVectorIconsManager", 1204 | ); 1205 | }; 1206 | name = Release; 1207 | }; 1208 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1209 | isa = XCBuildConfiguration; 1210 | buildSettings = { 1211 | BUNDLE_LOADER = "$(TEST_HOST)"; 1212 | CLANG_ANALYZER_NONNULL = YES; 1213 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1214 | CLANG_WARN_INFINITE_RECURSION = YES; 1215 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1216 | DEBUG_INFORMATION_FORMAT = dwarf; 1217 | ENABLE_TESTABILITY = YES; 1218 | GCC_NO_COMMON_BLOCKS = YES; 1219 | INFOPLIST_FILE = "QuickSample-tvOSTests/Info.plist"; 1220 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1221 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.QuickSample-tvOSTests"; 1222 | PRODUCT_NAME = "$(TARGET_NAME)"; 1223 | SDKROOT = appletvos; 1224 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QuickSample-tvOS.app/QuickSample-tvOS"; 1225 | TVOS_DEPLOYMENT_TARGET = 10.1; 1226 | LIBRARY_SEARCH_PATHS = ( 1227 | "$(inherited)", 1228 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1229 | ); 1230 | }; 1231 | name = Debug; 1232 | }; 1233 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1234 | isa = XCBuildConfiguration; 1235 | buildSettings = { 1236 | BUNDLE_LOADER = "$(TEST_HOST)"; 1237 | CLANG_ANALYZER_NONNULL = YES; 1238 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1239 | CLANG_WARN_INFINITE_RECURSION = YES; 1240 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1241 | COPY_PHASE_STRIP = NO; 1242 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1243 | GCC_NO_COMMON_BLOCKS = YES; 1244 | INFOPLIST_FILE = "QuickSample-tvOSTests/Info.plist"; 1245 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1246 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.QuickSample-tvOSTests"; 1247 | PRODUCT_NAME = "$(TARGET_NAME)"; 1248 | SDKROOT = appletvos; 1249 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QuickSample-tvOS.app/QuickSample-tvOS"; 1250 | TVOS_DEPLOYMENT_TARGET = 10.1; 1251 | LIBRARY_SEARCH_PATHS = ( 1252 | "$(inherited)", 1253 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1254 | ); 1255 | }; 1256 | name = Release; 1257 | }; 1258 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1259 | isa = XCBuildConfiguration; 1260 | buildSettings = { 1261 | ALWAYS_SEARCH_USER_PATHS = NO; 1262 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1263 | CLANG_CXX_LIBRARY = "libc++"; 1264 | CLANG_ENABLE_MODULES = YES; 1265 | CLANG_ENABLE_OBJC_ARC = YES; 1266 | CLANG_WARN_BOOL_CONVERSION = YES; 1267 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1268 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1269 | CLANG_WARN_EMPTY_BODY = YES; 1270 | CLANG_WARN_ENUM_CONVERSION = YES; 1271 | CLANG_WARN_INT_CONVERSION = YES; 1272 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1273 | CLANG_WARN_UNREACHABLE_CODE = YES; 1274 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1275 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1276 | COPY_PHASE_STRIP = NO; 1277 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1278 | GCC_C_LANGUAGE_STANDARD = gnu99; 1279 | GCC_DYNAMIC_NO_PIC = NO; 1280 | GCC_OPTIMIZATION_LEVEL = 0; 1281 | GCC_PREPROCESSOR_DEFINITIONS = ( 1282 | "DEBUG=1", 1283 | "$(inherited)", 1284 | ); 1285 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1286 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1287 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1288 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1289 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1290 | GCC_WARN_UNUSED_FUNCTION = YES; 1291 | GCC_WARN_UNUSED_VARIABLE = YES; 1292 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1293 | MTL_ENABLE_DEBUG_INFO = YES; 1294 | ONLY_ACTIVE_ARCH = YES; 1295 | SDKROOT = iphoneos; 1296 | }; 1297 | name = Debug; 1298 | }; 1299 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1300 | isa = XCBuildConfiguration; 1301 | buildSettings = { 1302 | ALWAYS_SEARCH_USER_PATHS = NO; 1303 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1304 | CLANG_CXX_LIBRARY = "libc++"; 1305 | CLANG_ENABLE_MODULES = YES; 1306 | CLANG_ENABLE_OBJC_ARC = YES; 1307 | CLANG_WARN_BOOL_CONVERSION = YES; 1308 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1309 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1310 | CLANG_WARN_EMPTY_BODY = YES; 1311 | CLANG_WARN_ENUM_CONVERSION = YES; 1312 | CLANG_WARN_INT_CONVERSION = YES; 1313 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1314 | CLANG_WARN_UNREACHABLE_CODE = YES; 1315 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1316 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1317 | COPY_PHASE_STRIP = YES; 1318 | ENABLE_NS_ASSERTIONS = NO; 1319 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1320 | GCC_C_LANGUAGE_STANDARD = gnu99; 1321 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1322 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1323 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1324 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1325 | GCC_WARN_UNUSED_FUNCTION = YES; 1326 | GCC_WARN_UNUSED_VARIABLE = YES; 1327 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1328 | MTL_ENABLE_DEBUG_INFO = NO; 1329 | SDKROOT = iphoneos; 1330 | VALIDATE_PRODUCT = YES; 1331 | }; 1332 | name = Release; 1333 | }; 1334 | /* End XCBuildConfiguration section */ 1335 | 1336 | /* Begin XCConfigurationList section */ 1337 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "QuickSampleTests" */ = { 1338 | isa = XCConfigurationList; 1339 | buildConfigurations = ( 1340 | 00E356F61AD99517003FC87E /* Debug */, 1341 | 00E356F71AD99517003FC87E /* Release */, 1342 | ); 1343 | defaultConfigurationIsVisible = 0; 1344 | defaultConfigurationName = Release; 1345 | }; 1346 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "QuickSample" */ = { 1347 | isa = XCConfigurationList; 1348 | buildConfigurations = ( 1349 | 13B07F941A680F5B00A75B9A /* Debug */, 1350 | 13B07F951A680F5B00A75B9A /* Release */, 1351 | ); 1352 | defaultConfigurationIsVisible = 0; 1353 | defaultConfigurationName = Release; 1354 | }; 1355 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "QuickSample-tvOS" */ = { 1356 | isa = XCConfigurationList; 1357 | buildConfigurations = ( 1358 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1359 | 2D02E4981E0B4A5E006451C7 /* Release */, 1360 | ); 1361 | defaultConfigurationIsVisible = 0; 1362 | defaultConfigurationName = Release; 1363 | }; 1364 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "QuickSample-tvOSTests" */ = { 1365 | isa = XCConfigurationList; 1366 | buildConfigurations = ( 1367 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1368 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1369 | ); 1370 | defaultConfigurationIsVisible = 0; 1371 | defaultConfigurationName = Release; 1372 | }; 1373 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "QuickSample" */ = { 1374 | isa = XCConfigurationList; 1375 | buildConfigurations = ( 1376 | 83CBBA201A601CBA00E9B192 /* Debug */, 1377 | 83CBBA211A601CBA00E9B192 /* Release */, 1378 | ); 1379 | defaultConfigurationIsVisible = 0; 1380 | defaultConfigurationName = Release; 1381 | }; 1382 | /* End XCConfigurationList section */ 1383 | }; 1384 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1385 | } 1386 | -------------------------------------------------------------------------------- /ios/QuickSample.xcodeproj/xcshareddata/xcschemes/QuickSample-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/QuickSample.xcodeproj/xcshareddata/xcschemes/QuickSample.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/QuickSample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/QuickSample/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"QuickSample" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/QuickSample/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/QuickSample/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/QuickSample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | QuickSample 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 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | FontAwesome.ttf 59 | Foundation.ttf 60 | Ionicons.ttf 61 | MaterialCommunityIcons.ttf 62 | MaterialIcons.ttf 63 | Octicons.ttf 64 | SimpleLineIcons.ttf 65 | Zocial.ttf 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /ios/QuickSample/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/QuickSampleTests/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/QuickSampleTests/QuickSampleTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface QuickSampleTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation QuickSampleTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "QuickSample", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "pigment": "^0.1.0", 11 | "react": "16.0.0-alpha.12", 12 | "react-logger": "^1.1.0", 13 | "react-native": "0.48.1", 14 | "react-native-animatable": "^1.2.3", 15 | "react-native-vector-icons": "^4.3.0", 16 | "react-navigation": "^1.0.0-beta.11", 17 | "react-redux": "^5.0.6", 18 | "react-thunk": "^1.0.0", 19 | "redux": "^3.7.2", 20 | "redux-logger": "^3.0.6", 21 | "redux-persist": "^4.9.1", 22 | "redux-thunk": "^2.2.0" 23 | }, 24 | "devDependencies": { 25 | "babel-jest": "21.0.0", 26 | "babel-preset-react-native": "3.0.2", 27 | "jest": "21.0.1", 28 | "react-test-renderer": "16.0.0-alpha.12" 29 | }, 30 | "jest": { 31 | "preset": "react-native" 32 | } 33 | } 34 | --------------------------------------------------------------------------------