├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Andale Mono.ttf │ │ │ ├── Arial Black.ttf │ │ │ ├── Arial.ttf │ │ │ ├── Comic Sans MS.ttf │ │ │ ├── Courier New.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Georgia.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Microsoft Sans Serif.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SF-UI-Text-Regular.otf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Skia.ttf │ │ │ ├── Times New Roman.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── reactwp │ │ │ ├── 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 ├── index.android.js ├── ios ├── ReactWp-tvOS │ └── Info.plist ├── ReactWp-tvOSTests │ └── Info.plist ├── ReactWp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactWp-tvOS.xcscheme │ │ └── ReactWp.xcscheme ├── ReactWp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactWpTests │ ├── Info.plist │ └── ReactWpTests.m ├── package.json ├── src ├── Components │ ├── Post │ │ └── index.js │ ├── Posts │ │ └── index.js │ └── package.json ├── Configs │ ├── Webserver.js │ └── package.json ├── Containers │ ├── Categoria │ │ └── index.js │ ├── Home │ │ └── index.js │ ├── Post │ │ └── index.js │ └── package.json ├── Helpers │ ├── Integracao │ │ └── index.js │ └── package.json ├── MenuDrawer.js └── Routes.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.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 | module.system=haste 26 | 27 | experimental.strict_type_args=true 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\\.\\(3[0-7]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-7]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 40 | 41 | unsafe.enable_getters_and_setters=true 42 | 43 | [version] 44 | ^0.37.0 45 | -------------------------------------------------------------------------------- /.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 | android/app/libs 43 | *.keystore 44 | 45 | # fastlane 46 | # 47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 | # screenshots whenever they are needed. 49 | # For more information about the recommended setup visit: 50 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 51 | 52 | fastlane/report.xml 53 | fastlane/Preview.html 54 | fastlane/screenshots 55 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 2 | 3 | Como rodar: 4 | 5 | ```sh 6 | 7 | //yarn eh opcional, pode ser substituido pelo proprio npm 8 | # npm install -g react-native yarn 9 | 10 | 11 | cd wp-react-native-app 12 | 13 | yarn install 14 | 15 | // inicia no emulador ou no dispositivo conectado 16 | // Recomendo usar o Genymotion como emulador 17 | react-native run-android 18 | 19 | react-native start 20 | 21 | ``` 22 | -------------------------------------------------------------------------------- /__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 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.reactwp', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.reactwp', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /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 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.reactwp" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile project(':react-native-vector-icons') 130 | compile fileTree(dir: "libs", include: ["*.jar"]) 131 | compile "com.android.support:appcompat-v7:23.0.1" 132 | compile "com.facebook.react:react-native:+" // From node_modules 133 | } 134 | 135 | // Run this once to be able to run the application with BUCK 136 | // puts all compile dependencies into folder libs for BUCK to use 137 | task copyDownloadableDepsToLibs(type: Copy) { 138 | from configurations.compile 139 | into 'libs' 140 | } 141 | -------------------------------------------------------------------------------- /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 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Andale Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Andale Mono.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Arial Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Arial Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Arial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Comic Sans MS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Comic Sans MS.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Courier New.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Courier New.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Georgia.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Microsoft Sans Serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Microsoft Sans Serif.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-UI-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/SF-UI-Text-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Skia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Skia.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Times New Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Times New Roman.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactwp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactwp; 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 "ReactWp"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactwp/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactwp; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.facebook.react.ReactInstanceManager; 9 | import com.facebook.react.ReactNativeHost; 10 | import com.facebook.react.ReactPackage; 11 | import com.facebook.react.shell.MainReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | 14 | import java.util.Arrays; 15 | import java.util.List; 16 | 17 | public class MainApplication extends Application implements ReactApplication { 18 | 19 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 20 | @Override 21 | public boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | return Arrays.asList( 28 | new MainReactPackage(), 29 | new VectorIconsPackage() 30 | ); 31 | } 32 | }; 33 | 34 | @Override 35 | public ReactNativeHost getReactNativeHost() { 36 | return mReactNativeHost; 37 | } 38 | 39 | @Override 40 | public void onCreate() { 41 | super.onCreate(); 42 | SoLoader.init(this, /* native exopackage */ false); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ReactWp 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:1.3.1' 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/webjoaoneto/wp-react-native-app/f5de3a0c20928144b339f7c88e61dbed409529ff/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.4-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 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 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 = 'ReactWp' 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 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | AppRegistry, 4 | Container, 5 | View 6 | } from 'react-native'; 7 | 8 | import Routes from './src/Routes.js'; 9 | 10 | export default class ReactWp extends Component { 11 | render() { 12 | return ( 13 | 14 | ); 15 | } 16 | } 17 | 18 | AppRegistry.registerComponent('ReactWp', () => ReactWp); 19 | -------------------------------------------------------------------------------- /ios/ReactWp-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/ReactWp-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/ReactWp.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 /* ReactWpTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactWpTests.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 /* ReactWpTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactWpTests.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 | ABE47284A9144D558C028DF6 /* Andale Mono.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D0478B43923C4969BB78BA6F /* Andale Mono.ttf */; }; 39 | 681ADC22ED7F4938BF4C5B43 /* Arial Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D09203FE7AD346BB822ABB63 /* Arial Black.ttf */; }; 40 | 5C65098B77E9474DBD895DC6 /* Arial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 218092DA74AF4DF4AD46D58C /* Arial.ttf */; }; 41 | CA4E226DB6D24AA4BEB02250 /* Comic Sans MS.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B2B7F5D98AB041ED8C738D1A /* Comic Sans MS.ttf */; }; 42 | F14C59CA95444048B72B8A05 /* Courier New.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 70AC7BC57E5F47BCB2D3B393 /* Courier New.ttf */; }; 43 | 9CB7EA96ECF64537B6756125 /* Georgia.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 120C885492164EDA89B4EFCE /* Georgia.ttf */; }; 44 | 98FAC762C9F343AD9B0B408E /* Microsoft Sans Serif.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A9AB1326601A47D98EEB0A3C /* Microsoft Sans Serif.ttf */; }; 45 | 3A6C336AF52941558946D754 /* Roboto_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3AED141218A04C918020378A /* Roboto_medium.ttf */; }; 46 | 8272C5AB508E48628D3C61B8 /* Roboto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F02FF3F2D7B640A5BBACAD63 /* Roboto.ttf */; }; 47 | 48843BE839EA484CB93CB140 /* SF-UI-Text-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = 6576C6E3C16B43D590480442 /* SF-UI-Text-Regular.otf */; }; 48 | 43B5AAD973154921A7F6A617 /* Skia.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2425DA2767584BF2816C6462 /* Skia.ttf */; }; 49 | 159F5779649C45DE84329EB2 /* Times New Roman.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2088E20C6C3C46A490E2B6E9 /* Times New Roman.ttf */; }; 50 | 84CCF153099B4E74AADE2E1F /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A367662820A4C72AB39606D /* libRNVectorIcons.a */; }; 51 | CC76060BDFAF402881BBBB9E /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CB6BD28DAE3D41CF97ED9BA4 /* Entypo.ttf */; }; 52 | 5BD974F3D7694D5AA6533958 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6A46E08BD03C4B738B01F500 /* EvilIcons.ttf */; }; 53 | 3EA7462451034751AB231CFE /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6DCB5E4A77DD4F4789FED073 /* FontAwesome.ttf */; }; 54 | 2536F4A389F944C9AB78BBE8 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5A9D086FA32A41A6B413E5A6 /* Foundation.ttf */; }; 55 | E0859CCCFF0A4A728745E808 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0CFD825286A347F79F4C4F8A /* Ionicons.ttf */; }; 56 | A086B1A628D7499E89AED6A8 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 272DD141738E4919ACEB0287 /* MaterialCommunityIcons.ttf */; }; 57 | A66C1DA3B3D74C95B71990CB /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B16149E36A444D96A97C34CE /* MaterialIcons.ttf */; }; 58 | 192F8B01A6AF423B89DA1E68 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F3E916B78CC64CB1AC42FC60 /* Octicons.ttf */; }; 59 | 5658C9D1B5F441618FC3CA0C /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ED4656411FB24E13A4845F18 /* SimpleLineIcons.ttf */; }; 60 | 93EFFE734491474EB8B9DE46 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8988A6E0F44E434B905429FF /* Zocial.ttf */; }; 61 | /* End PBXBuildFile section */ 62 | 63 | /* Begin PBXContainerItemProxy section */ 64 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 67 | proxyType = 2; 68 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 69 | remoteInfo = RCTActionSheet; 70 | }; 71 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 76 | remoteInfo = RCTGeolocation; 77 | }; 78 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 83 | remoteInfo = RCTImage; 84 | }; 85 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 90 | remoteInfo = RCTNetwork; 91 | }; 92 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 95 | proxyType = 2; 96 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 97 | remoteInfo = RCTVibration; 98 | }; 99 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 102 | proxyType = 1; 103 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 104 | remoteInfo = ReactWp; 105 | }; 106 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 109 | proxyType = 2; 110 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 111 | remoteInfo = RCTSettings; 112 | }; 113 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 118 | remoteInfo = RCTWebSocket; 119 | }; 120 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 123 | proxyType = 2; 124 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 125 | remoteInfo = React; 126 | }; 127 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 130 | proxyType = 1; 131 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 132 | remoteInfo = "ReactWp-tvOS"; 133 | }; 134 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 135 | isa = PBXContainerItemProxy; 136 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 137 | proxyType = 2; 138 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 139 | remoteInfo = "RCTImage-tvOS"; 140 | }; 141 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 142 | isa = PBXContainerItemProxy; 143 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 144 | proxyType = 2; 145 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 146 | remoteInfo = "RCTLinking-tvOS"; 147 | }; 148 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 149 | isa = PBXContainerItemProxy; 150 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 151 | proxyType = 2; 152 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 153 | remoteInfo = "RCTNetwork-tvOS"; 154 | }; 155 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 156 | isa = PBXContainerItemProxy; 157 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 158 | proxyType = 2; 159 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 160 | remoteInfo = "RCTSettings-tvOS"; 161 | }; 162 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 163 | isa = PBXContainerItemProxy; 164 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 165 | proxyType = 2; 166 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 167 | remoteInfo = "RCTText-tvOS"; 168 | }; 169 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 170 | isa = PBXContainerItemProxy; 171 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 172 | proxyType = 2; 173 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 174 | remoteInfo = "RCTWebSocket-tvOS"; 175 | }; 176 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 177 | isa = PBXContainerItemProxy; 178 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 179 | proxyType = 2; 180 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 181 | remoteInfo = "React-tvOS"; 182 | }; 183 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 184 | isa = PBXContainerItemProxy; 185 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 186 | proxyType = 2; 187 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 188 | remoteInfo = yoga; 189 | }; 190 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 191 | isa = PBXContainerItemProxy; 192 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 193 | proxyType = 2; 194 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 195 | remoteInfo = "yoga-tvOS"; 196 | }; 197 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 198 | isa = PBXContainerItemProxy; 199 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 200 | proxyType = 2; 201 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 202 | remoteInfo = cxxreact; 203 | }; 204 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 205 | isa = PBXContainerItemProxy; 206 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 207 | proxyType = 2; 208 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 209 | remoteInfo = "cxxreact-tvOS"; 210 | }; 211 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 212 | isa = PBXContainerItemProxy; 213 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 214 | proxyType = 2; 215 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 216 | remoteInfo = jschelpers; 217 | }; 218 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 219 | isa = PBXContainerItemProxy; 220 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 221 | proxyType = 2; 222 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 223 | remoteInfo = "jschelpers-tvOS"; 224 | }; 225 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 226 | isa = PBXContainerItemProxy; 227 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 228 | proxyType = 2; 229 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 230 | remoteInfo = RCTAnimation; 231 | }; 232 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 233 | isa = PBXContainerItemProxy; 234 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 235 | proxyType = 2; 236 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 237 | remoteInfo = "RCTAnimation-tvOS"; 238 | }; 239 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 244 | remoteInfo = RCTLinking; 245 | }; 246 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 251 | remoteInfo = RCTText; 252 | }; 253 | /* End PBXContainerItemProxy section */ 254 | 255 | /* Begin PBXFileReference section */ 256 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 257 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 258 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 259 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 260 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 261 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 262 | 00E356EE1AD99517003FC87E /* ReactWpTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactWpTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 263 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 264 | 00E356F21AD99517003FC87E /* ReactWpTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactWpTests.m; sourceTree = ""; }; 265 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 266 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 267 | 13B07F961A680F5B00A75B9A /* ReactWp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactWp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 268 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactWp/AppDelegate.h; sourceTree = ""; }; 269 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactWp/AppDelegate.m; sourceTree = ""; }; 270 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 271 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactWp/Images.xcassets; sourceTree = ""; }; 272 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactWp/Info.plist; sourceTree = ""; }; 273 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactWp/main.m; sourceTree = ""; }; 274 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 275 | 2D02E47B1E0B4A5D006451C7 /* ReactWp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactWp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 276 | 2D02E4901E0B4A5D006451C7 /* ReactWp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactWp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 277 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 278 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 279 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 280 | D0478B43923C4969BB78BA6F /* Andale Mono.ttf */ = {isa = PBXFileReference; name = "Andale Mono.ttf"; path = "../node_modules/native-base/Fonts/Andale Mono.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 281 | D09203FE7AD346BB822ABB63 /* Arial Black.ttf */ = {isa = PBXFileReference; name = "Arial Black.ttf"; path = "../node_modules/native-base/Fonts/Arial Black.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 282 | 218092DA74AF4DF4AD46D58C /* Arial.ttf */ = {isa = PBXFileReference; name = "Arial.ttf"; path = "../node_modules/native-base/Fonts/Arial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 283 | B2B7F5D98AB041ED8C738D1A /* Comic Sans MS.ttf */ = {isa = PBXFileReference; name = "Comic Sans MS.ttf"; path = "../node_modules/native-base/Fonts/Comic Sans MS.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 284 | 70AC7BC57E5F47BCB2D3B393 /* Courier New.ttf */ = {isa = PBXFileReference; name = "Courier New.ttf"; path = "../node_modules/native-base/Fonts/Courier New.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 285 | 120C885492164EDA89B4EFCE /* Georgia.ttf */ = {isa = PBXFileReference; name = "Georgia.ttf"; path = "../node_modules/native-base/Fonts/Georgia.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 286 | A9AB1326601A47D98EEB0A3C /* Microsoft Sans Serif.ttf */ = {isa = PBXFileReference; name = "Microsoft Sans Serif.ttf"; path = "../node_modules/native-base/Fonts/Microsoft Sans Serif.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 287 | 3AED141218A04C918020378A /* Roboto_medium.ttf */ = {isa = PBXFileReference; name = "Roboto_medium.ttf"; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 288 | F02FF3F2D7B640A5BBACAD63 /* Roboto.ttf */ = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 289 | 6576C6E3C16B43D590480442 /* SF-UI-Text-Regular.otf */ = {isa = PBXFileReference; name = "SF-UI-Text-Regular.otf"; path = "../node_modules/native-base/Fonts/SF-UI-Text-Regular.otf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 290 | 2425DA2767584BF2816C6462 /* Skia.ttf */ = {isa = PBXFileReference; name = "Skia.ttf"; path = "../node_modules/native-base/Fonts/Skia.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 291 | 2088E20C6C3C46A490E2B6E9 /* Times New Roman.ttf */ = {isa = PBXFileReference; name = "Times New Roman.ttf"; path = "../node_modules/native-base/Fonts/Times New Roman.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 292 | 8209D6EC3B7A47D58EEB9545 /* 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; }; 293 | 2A367662820A4C72AB39606D /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 294 | CB6BD28DAE3D41CF97ED9BA4 /* 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; }; 295 | 6A46E08BD03C4B738B01F500 /* 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; }; 296 | 6DCB5E4A77DD4F4789FED073 /* 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; }; 297 | 5A9D086FA32A41A6B413E5A6 /* 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; }; 298 | 0CFD825286A347F79F4C4F8A /* 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; }; 299 | 272DD141738E4919ACEB0287 /* 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; }; 300 | B16149E36A444D96A97C34CE /* 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; }; 301 | F3E916B78CC64CB1AC42FC60 /* 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; }; 302 | ED4656411FB24E13A4845F18 /* 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; }; 303 | 8988A6E0F44E434B905429FF /* 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; }; 304 | /* End PBXFileReference section */ 305 | 306 | /* Begin PBXFrameworksBuildPhase section */ 307 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 308 | isa = PBXFrameworksBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 312 | ); 313 | runOnlyForDeploymentPostprocessing = 0; 314 | }; 315 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 316 | isa = PBXFrameworksBuildPhase; 317 | buildActionMask = 2147483647; 318 | files = ( 319 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 320 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 321 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 322 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 323 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 324 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 325 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 326 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 327 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 328 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 329 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 330 | 84CCF153099B4E74AADE2E1F /* libRNVectorIcons.a in Frameworks */, 331 | ); 332 | runOnlyForDeploymentPostprocessing = 0; 333 | }; 334 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 335 | isa = PBXFrameworksBuildPhase; 336 | buildActionMask = 2147483647; 337 | files = ( 338 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 339 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 340 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 341 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 342 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 343 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 344 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 345 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 346 | ); 347 | runOnlyForDeploymentPostprocessing = 0; 348 | }; 349 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 350 | isa = PBXFrameworksBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | /* End PBXFrameworksBuildPhase section */ 357 | 358 | /* Begin PBXGroup section */ 359 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 360 | isa = PBXGroup; 361 | children = ( 362 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 363 | ); 364 | name = Products; 365 | sourceTree = ""; 366 | }; 367 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 368 | isa = PBXGroup; 369 | children = ( 370 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 371 | ); 372 | name = Products; 373 | sourceTree = ""; 374 | }; 375 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 376 | isa = PBXGroup; 377 | children = ( 378 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 379 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 380 | ); 381 | name = Products; 382 | sourceTree = ""; 383 | }; 384 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 385 | isa = PBXGroup; 386 | children = ( 387 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 388 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 389 | ); 390 | name = Products; 391 | sourceTree = ""; 392 | }; 393 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 394 | isa = PBXGroup; 395 | children = ( 396 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 397 | ); 398 | name = Products; 399 | sourceTree = ""; 400 | }; 401 | 00E356EF1AD99517003FC87E /* ReactWpTests */ = { 402 | isa = PBXGroup; 403 | children = ( 404 | 00E356F21AD99517003FC87E /* ReactWpTests.m */, 405 | 00E356F01AD99517003FC87E /* Supporting Files */, 406 | ); 407 | path = ReactWpTests; 408 | sourceTree = ""; 409 | }; 410 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 411 | isa = PBXGroup; 412 | children = ( 413 | 00E356F11AD99517003FC87E /* Info.plist */, 414 | ); 415 | name = "Supporting Files"; 416 | sourceTree = ""; 417 | }; 418 | 139105B71AF99BAD00B5F7CC /* Products */ = { 419 | isa = PBXGroup; 420 | children = ( 421 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 422 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 423 | ); 424 | name = Products; 425 | sourceTree = ""; 426 | }; 427 | 139FDEE71B06529A00C62182 /* Products */ = { 428 | isa = PBXGroup; 429 | children = ( 430 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 431 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 432 | ); 433 | name = Products; 434 | sourceTree = ""; 435 | }; 436 | 13B07FAE1A68108700A75B9A /* ReactWp */ = { 437 | isa = PBXGroup; 438 | children = ( 439 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 440 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 441 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 442 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 443 | 13B07FB61A68108700A75B9A /* Info.plist */, 444 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 445 | 13B07FB71A68108700A75B9A /* main.m */, 446 | ); 447 | name = ReactWp; 448 | sourceTree = ""; 449 | }; 450 | 146834001AC3E56700842450 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 146834041AC3E56700842450 /* libReact.a */, 454 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 455 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 456 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 457 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 458 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 459 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 460 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 461 | ); 462 | name = Products; 463 | sourceTree = ""; 464 | }; 465 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 466 | isa = PBXGroup; 467 | children = ( 468 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 469 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 470 | ); 471 | name = Products; 472 | sourceTree = ""; 473 | }; 474 | 78C398B11ACF4ADC00677621 /* Products */ = { 475 | isa = PBXGroup; 476 | children = ( 477 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 478 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 479 | ); 480 | name = Products; 481 | sourceTree = ""; 482 | }; 483 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 484 | isa = PBXGroup; 485 | children = ( 486 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 487 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 488 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 489 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 490 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 491 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 492 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 493 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 494 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 495 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 496 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 497 | 8209D6EC3B7A47D58EEB9545 /* RNVectorIcons.xcodeproj */, 498 | ); 499 | name = Libraries; 500 | sourceTree = ""; 501 | }; 502 | 832341B11AAA6A8300B99B32 /* Products */ = { 503 | isa = PBXGroup; 504 | children = ( 505 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 506 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 507 | ); 508 | name = Products; 509 | sourceTree = ""; 510 | }; 511 | 83CBB9F61A601CBA00E9B192 = { 512 | isa = PBXGroup; 513 | children = ( 514 | 13B07FAE1A68108700A75B9A /* ReactWp */, 515 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 516 | 00E356EF1AD99517003FC87E /* ReactWpTests */, 517 | 83CBBA001A601CBA00E9B192 /* Products */, 518 | 898580B8D9EA4B19A046223D /* Resources */, 519 | ); 520 | indentWidth = 2; 521 | sourceTree = ""; 522 | tabWidth = 2; 523 | }; 524 | 83CBBA001A601CBA00E9B192 /* Products */ = { 525 | isa = PBXGroup; 526 | children = ( 527 | 13B07F961A680F5B00A75B9A /* ReactWp.app */, 528 | 00E356EE1AD99517003FC87E /* ReactWpTests.xctest */, 529 | 2D02E47B1E0B4A5D006451C7 /* ReactWp-tvOS.app */, 530 | 2D02E4901E0B4A5D006451C7 /* ReactWp-tvOSTests.xctest */, 531 | ); 532 | name = Products; 533 | sourceTree = ""; 534 | }; 535 | 898580B8D9EA4B19A046223D /* Resources */ = { 536 | isa = PBXGroup; 537 | children = ( 538 | D0478B43923C4969BB78BA6F /* Andale Mono.ttf */, 539 | D09203FE7AD346BB822ABB63 /* Arial Black.ttf */, 540 | 218092DA74AF4DF4AD46D58C /* Arial.ttf */, 541 | B2B7F5D98AB041ED8C738D1A /* Comic Sans MS.ttf */, 542 | 70AC7BC57E5F47BCB2D3B393 /* Courier New.ttf */, 543 | 120C885492164EDA89B4EFCE /* Georgia.ttf */, 544 | A9AB1326601A47D98EEB0A3C /* Microsoft Sans Serif.ttf */, 545 | 3AED141218A04C918020378A /* Roboto_medium.ttf */, 546 | F02FF3F2D7B640A5BBACAD63 /* Roboto.ttf */, 547 | 6576C6E3C16B43D590480442 /* SF-UI-Text-Regular.otf */, 548 | 2425DA2767584BF2816C6462 /* Skia.ttf */, 549 | 2088E20C6C3C46A490E2B6E9 /* Times New Roman.ttf */, 550 | CB6BD28DAE3D41CF97ED9BA4 /* Entypo.ttf */, 551 | 6A46E08BD03C4B738B01F500 /* EvilIcons.ttf */, 552 | 6DCB5E4A77DD4F4789FED073 /* FontAwesome.ttf */, 553 | 5A9D086FA32A41A6B413E5A6 /* Foundation.ttf */, 554 | 0CFD825286A347F79F4C4F8A /* Ionicons.ttf */, 555 | 272DD141738E4919ACEB0287 /* MaterialCommunityIcons.ttf */, 556 | B16149E36A444D96A97C34CE /* MaterialIcons.ttf */, 557 | F3E916B78CC64CB1AC42FC60 /* Octicons.ttf */, 558 | ED4656411FB24E13A4845F18 /* SimpleLineIcons.ttf */, 559 | 8988A6E0F44E434B905429FF /* Zocial.ttf */, 560 | ); 561 | name = Resources; 562 | path = ""; 563 | sourceTree = ""; 564 | }; 565 | /* End PBXGroup section */ 566 | 567 | /* Begin PBXNativeTarget section */ 568 | 00E356ED1AD99517003FC87E /* ReactWpTests */ = { 569 | isa = PBXNativeTarget; 570 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactWpTests" */; 571 | buildPhases = ( 572 | 00E356EA1AD99517003FC87E /* Sources */, 573 | 00E356EB1AD99517003FC87E /* Frameworks */, 574 | 00E356EC1AD99517003FC87E /* Resources */, 575 | ); 576 | buildRules = ( 577 | ); 578 | dependencies = ( 579 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 580 | ); 581 | name = ReactWpTests; 582 | productName = ReactWpTests; 583 | productReference = 00E356EE1AD99517003FC87E /* ReactWpTests.xctest */; 584 | productType = "com.apple.product-type.bundle.unit-test"; 585 | }; 586 | 13B07F861A680F5B00A75B9A /* ReactWp */ = { 587 | isa = PBXNativeTarget; 588 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactWp" */; 589 | buildPhases = ( 590 | 13B07F871A680F5B00A75B9A /* Sources */, 591 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 592 | 13B07F8E1A680F5B00A75B9A /* Resources */, 593 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 594 | ); 595 | buildRules = ( 596 | ); 597 | dependencies = ( 598 | ); 599 | name = ReactWp; 600 | productName = "Hello World"; 601 | productReference = 13B07F961A680F5B00A75B9A /* ReactWp.app */; 602 | productType = "com.apple.product-type.application"; 603 | }; 604 | 2D02E47A1E0B4A5D006451C7 /* ReactWp-tvOS */ = { 605 | isa = PBXNativeTarget; 606 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactWp-tvOS" */; 607 | buildPhases = ( 608 | 2D02E4771E0B4A5D006451C7 /* Sources */, 609 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 610 | 2D02E4791E0B4A5D006451C7 /* Resources */, 611 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 612 | ); 613 | buildRules = ( 614 | ); 615 | dependencies = ( 616 | ); 617 | name = "ReactWp-tvOS"; 618 | productName = "ReactWp-tvOS"; 619 | productReference = 2D02E47B1E0B4A5D006451C7 /* ReactWp-tvOS.app */; 620 | productType = "com.apple.product-type.application"; 621 | }; 622 | 2D02E48F1E0B4A5D006451C7 /* ReactWp-tvOSTests */ = { 623 | isa = PBXNativeTarget; 624 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactWp-tvOSTests" */; 625 | buildPhases = ( 626 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 627 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 628 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 629 | ); 630 | buildRules = ( 631 | ); 632 | dependencies = ( 633 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 634 | ); 635 | name = "ReactWp-tvOSTests"; 636 | productName = "ReactWp-tvOSTests"; 637 | productReference = 2D02E4901E0B4A5D006451C7 /* ReactWp-tvOSTests.xctest */; 638 | productType = "com.apple.product-type.bundle.unit-test"; 639 | }; 640 | /* End PBXNativeTarget section */ 641 | 642 | /* Begin PBXProject section */ 643 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 644 | isa = PBXProject; 645 | attributes = { 646 | LastUpgradeCheck = 610; 647 | ORGANIZATIONNAME = Facebook; 648 | TargetAttributes = { 649 | 00E356ED1AD99517003FC87E = { 650 | CreatedOnToolsVersion = 6.2; 651 | TestTargetID = 13B07F861A680F5B00A75B9A; 652 | }; 653 | 2D02E47A1E0B4A5D006451C7 = { 654 | CreatedOnToolsVersion = 8.2.1; 655 | ProvisioningStyle = Automatic; 656 | }; 657 | 2D02E48F1E0B4A5D006451C7 = { 658 | CreatedOnToolsVersion = 8.2.1; 659 | ProvisioningStyle = Automatic; 660 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 661 | }; 662 | }; 663 | }; 664 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactWp" */; 665 | compatibilityVersion = "Xcode 3.2"; 666 | developmentRegion = English; 667 | hasScannedForEncodings = 0; 668 | knownRegions = ( 669 | en, 670 | Base, 671 | ); 672 | mainGroup = 83CBB9F61A601CBA00E9B192; 673 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 674 | projectDirPath = ""; 675 | projectReferences = ( 676 | { 677 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 678 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 679 | }, 680 | { 681 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 682 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 683 | }, 684 | { 685 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 686 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 687 | }, 688 | { 689 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 690 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 691 | }, 692 | { 693 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 694 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 695 | }, 696 | { 697 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 698 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 699 | }, 700 | { 701 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 702 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 703 | }, 704 | { 705 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 706 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 707 | }, 708 | { 709 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 710 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 711 | }, 712 | { 713 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 714 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 715 | }, 716 | { 717 | ProductGroup = 146834001AC3E56700842450 /* Products */; 718 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 719 | }, 720 | ); 721 | projectRoot = ""; 722 | targets = ( 723 | 13B07F861A680F5B00A75B9A /* ReactWp */, 724 | 00E356ED1AD99517003FC87E /* ReactWpTests */, 725 | 2D02E47A1E0B4A5D006451C7 /* ReactWp-tvOS */, 726 | 2D02E48F1E0B4A5D006451C7 /* ReactWp-tvOSTests */, 727 | ); 728 | }; 729 | /* End PBXProject section */ 730 | 731 | /* Begin PBXReferenceProxy section */ 732 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 733 | isa = PBXReferenceProxy; 734 | fileType = archive.ar; 735 | path = libRCTActionSheet.a; 736 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 737 | sourceTree = BUILT_PRODUCTS_DIR; 738 | }; 739 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 740 | isa = PBXReferenceProxy; 741 | fileType = archive.ar; 742 | path = libRCTGeolocation.a; 743 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 744 | sourceTree = BUILT_PRODUCTS_DIR; 745 | }; 746 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 747 | isa = PBXReferenceProxy; 748 | fileType = archive.ar; 749 | path = libRCTImage.a; 750 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 751 | sourceTree = BUILT_PRODUCTS_DIR; 752 | }; 753 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 754 | isa = PBXReferenceProxy; 755 | fileType = archive.ar; 756 | path = libRCTNetwork.a; 757 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 758 | sourceTree = BUILT_PRODUCTS_DIR; 759 | }; 760 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 761 | isa = PBXReferenceProxy; 762 | fileType = archive.ar; 763 | path = libRCTVibration.a; 764 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 765 | sourceTree = BUILT_PRODUCTS_DIR; 766 | }; 767 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 768 | isa = PBXReferenceProxy; 769 | fileType = archive.ar; 770 | path = libRCTSettings.a; 771 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 772 | sourceTree = BUILT_PRODUCTS_DIR; 773 | }; 774 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 775 | isa = PBXReferenceProxy; 776 | fileType = archive.ar; 777 | path = libRCTWebSocket.a; 778 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 779 | sourceTree = BUILT_PRODUCTS_DIR; 780 | }; 781 | 146834041AC3E56700842450 /* libReact.a */ = { 782 | isa = PBXReferenceProxy; 783 | fileType = archive.ar; 784 | path = libReact.a; 785 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 786 | sourceTree = BUILT_PRODUCTS_DIR; 787 | }; 788 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 789 | isa = PBXReferenceProxy; 790 | fileType = archive.ar; 791 | path = "libRCTImage-tvOS.a"; 792 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 793 | sourceTree = BUILT_PRODUCTS_DIR; 794 | }; 795 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 796 | isa = PBXReferenceProxy; 797 | fileType = archive.ar; 798 | path = "libRCTLinking-tvOS.a"; 799 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 800 | sourceTree = BUILT_PRODUCTS_DIR; 801 | }; 802 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 803 | isa = PBXReferenceProxy; 804 | fileType = archive.ar; 805 | path = "libRCTNetwork-tvOS.a"; 806 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 807 | sourceTree = BUILT_PRODUCTS_DIR; 808 | }; 809 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 810 | isa = PBXReferenceProxy; 811 | fileType = archive.ar; 812 | path = "libRCTSettings-tvOS.a"; 813 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 814 | sourceTree = BUILT_PRODUCTS_DIR; 815 | }; 816 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 817 | isa = PBXReferenceProxy; 818 | fileType = archive.ar; 819 | path = "libRCTText-tvOS.a"; 820 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 821 | sourceTree = BUILT_PRODUCTS_DIR; 822 | }; 823 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 824 | isa = PBXReferenceProxy; 825 | fileType = archive.ar; 826 | path = "libRCTWebSocket-tvOS.a"; 827 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 828 | sourceTree = BUILT_PRODUCTS_DIR; 829 | }; 830 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 831 | isa = PBXReferenceProxy; 832 | fileType = archive.ar; 833 | path = libReact.a; 834 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 835 | sourceTree = BUILT_PRODUCTS_DIR; 836 | }; 837 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 838 | isa = PBXReferenceProxy; 839 | fileType = archive.ar; 840 | path = libyoga.a; 841 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 842 | sourceTree = BUILT_PRODUCTS_DIR; 843 | }; 844 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 845 | isa = PBXReferenceProxy; 846 | fileType = archive.ar; 847 | path = libyoga.a; 848 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 849 | sourceTree = BUILT_PRODUCTS_DIR; 850 | }; 851 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 852 | isa = PBXReferenceProxy; 853 | fileType = archive.ar; 854 | path = libcxxreact.a; 855 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 856 | sourceTree = BUILT_PRODUCTS_DIR; 857 | }; 858 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 859 | isa = PBXReferenceProxy; 860 | fileType = archive.ar; 861 | path = libcxxreact.a; 862 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 863 | sourceTree = BUILT_PRODUCTS_DIR; 864 | }; 865 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 866 | isa = PBXReferenceProxy; 867 | fileType = archive.ar; 868 | path = libjschelpers.a; 869 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 870 | sourceTree = BUILT_PRODUCTS_DIR; 871 | }; 872 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 873 | isa = PBXReferenceProxy; 874 | fileType = archive.ar; 875 | path = libjschelpers.a; 876 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 877 | sourceTree = BUILT_PRODUCTS_DIR; 878 | }; 879 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 880 | isa = PBXReferenceProxy; 881 | fileType = archive.ar; 882 | path = libRCTAnimation.a; 883 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 884 | sourceTree = BUILT_PRODUCTS_DIR; 885 | }; 886 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 887 | isa = PBXReferenceProxy; 888 | fileType = archive.ar; 889 | path = "libRCTAnimation-tvOS.a"; 890 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 891 | sourceTree = BUILT_PRODUCTS_DIR; 892 | }; 893 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 894 | isa = PBXReferenceProxy; 895 | fileType = archive.ar; 896 | path = libRCTLinking.a; 897 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 898 | sourceTree = BUILT_PRODUCTS_DIR; 899 | }; 900 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 901 | isa = PBXReferenceProxy; 902 | fileType = archive.ar; 903 | path = libRCTText.a; 904 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 905 | sourceTree = BUILT_PRODUCTS_DIR; 906 | }; 907 | /* End PBXReferenceProxy section */ 908 | 909 | /* Begin PBXResourcesBuildPhase section */ 910 | 00E356EC1AD99517003FC87E /* Resources */ = { 911 | isa = PBXResourcesBuildPhase; 912 | buildActionMask = 2147483647; 913 | files = ( 914 | ); 915 | runOnlyForDeploymentPostprocessing = 0; 916 | }; 917 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 918 | isa = PBXResourcesBuildPhase; 919 | buildActionMask = 2147483647; 920 | files = ( 921 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 922 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 923 | ABE47284A9144D558C028DF6 /* Andale Mono.ttf in Resources */, 924 | 681ADC22ED7F4938BF4C5B43 /* Arial Black.ttf in Resources */, 925 | 5C65098B77E9474DBD895DC6 /* Arial.ttf in Resources */, 926 | CA4E226DB6D24AA4BEB02250 /* Comic Sans MS.ttf in Resources */, 927 | F14C59CA95444048B72B8A05 /* Courier New.ttf in Resources */, 928 | 9CB7EA96ECF64537B6756125 /* Georgia.ttf in Resources */, 929 | 98FAC762C9F343AD9B0B408E /* Microsoft Sans Serif.ttf in Resources */, 930 | 3A6C336AF52941558946D754 /* Roboto_medium.ttf in Resources */, 931 | 8272C5AB508E48628D3C61B8 /* Roboto.ttf in Resources */, 932 | 48843BE839EA484CB93CB140 /* SF-UI-Text-Regular.otf in Resources */, 933 | 43B5AAD973154921A7F6A617 /* Skia.ttf in Resources */, 934 | 159F5779649C45DE84329EB2 /* Times New Roman.ttf in Resources */, 935 | CC76060BDFAF402881BBBB9E /* Entypo.ttf in Resources */, 936 | 5BD974F3D7694D5AA6533958 /* EvilIcons.ttf in Resources */, 937 | 3EA7462451034751AB231CFE /* FontAwesome.ttf in Resources */, 938 | 2536F4A389F944C9AB78BBE8 /* Foundation.ttf in Resources */, 939 | E0859CCCFF0A4A728745E808 /* Ionicons.ttf in Resources */, 940 | A086B1A628D7499E89AED6A8 /* MaterialCommunityIcons.ttf in Resources */, 941 | A66C1DA3B3D74C95B71990CB /* MaterialIcons.ttf in Resources */, 942 | 192F8B01A6AF423B89DA1E68 /* Octicons.ttf in Resources */, 943 | 5658C9D1B5F441618FC3CA0C /* SimpleLineIcons.ttf in Resources */, 944 | 93EFFE734491474EB8B9DE46 /* Zocial.ttf in Resources */, 945 | ); 946 | runOnlyForDeploymentPostprocessing = 0; 947 | }; 948 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 949 | isa = PBXResourcesBuildPhase; 950 | buildActionMask = 2147483647; 951 | files = ( 952 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 953 | ); 954 | runOnlyForDeploymentPostprocessing = 0; 955 | }; 956 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 957 | isa = PBXResourcesBuildPhase; 958 | buildActionMask = 2147483647; 959 | files = ( 960 | ); 961 | runOnlyForDeploymentPostprocessing = 0; 962 | }; 963 | /* End PBXResourcesBuildPhase section */ 964 | 965 | /* Begin PBXShellScriptBuildPhase section */ 966 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 967 | isa = PBXShellScriptBuildPhase; 968 | buildActionMask = 2147483647; 969 | files = ( 970 | ); 971 | inputPaths = ( 972 | ); 973 | name = "Bundle React Native code and images"; 974 | outputPaths = ( 975 | ); 976 | runOnlyForDeploymentPostprocessing = 0; 977 | shellPath = /bin/sh; 978 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 979 | }; 980 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 981 | isa = PBXShellScriptBuildPhase; 982 | buildActionMask = 2147483647; 983 | files = ( 984 | ); 985 | inputPaths = ( 986 | ); 987 | name = "Bundle React Native Code And Images"; 988 | outputPaths = ( 989 | ); 990 | runOnlyForDeploymentPostprocessing = 0; 991 | shellPath = /bin/sh; 992 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 993 | }; 994 | /* End PBXShellScriptBuildPhase section */ 995 | 996 | /* Begin PBXSourcesBuildPhase section */ 997 | 00E356EA1AD99517003FC87E /* Sources */ = { 998 | isa = PBXSourcesBuildPhase; 999 | buildActionMask = 2147483647; 1000 | files = ( 1001 | 00E356F31AD99517003FC87E /* ReactWpTests.m in Sources */, 1002 | ); 1003 | runOnlyForDeploymentPostprocessing = 0; 1004 | }; 1005 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1006 | isa = PBXSourcesBuildPhase; 1007 | buildActionMask = 2147483647; 1008 | files = ( 1009 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1010 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1011 | ); 1012 | runOnlyForDeploymentPostprocessing = 0; 1013 | }; 1014 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1015 | isa = PBXSourcesBuildPhase; 1016 | buildActionMask = 2147483647; 1017 | files = ( 1018 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1019 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1020 | ); 1021 | runOnlyForDeploymentPostprocessing = 0; 1022 | }; 1023 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1024 | isa = PBXSourcesBuildPhase; 1025 | buildActionMask = 2147483647; 1026 | files = ( 1027 | 2DCD954D1E0B4F2C00145EB5 /* ReactWpTests.m in Sources */, 1028 | ); 1029 | runOnlyForDeploymentPostprocessing = 0; 1030 | }; 1031 | /* End PBXSourcesBuildPhase section */ 1032 | 1033 | /* Begin PBXTargetDependency section */ 1034 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1035 | isa = PBXTargetDependency; 1036 | target = 13B07F861A680F5B00A75B9A /* ReactWp */; 1037 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1038 | }; 1039 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1040 | isa = PBXTargetDependency; 1041 | target = 2D02E47A1E0B4A5D006451C7 /* ReactWp-tvOS */; 1042 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1043 | }; 1044 | /* End PBXTargetDependency section */ 1045 | 1046 | /* Begin PBXVariantGroup section */ 1047 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1048 | isa = PBXVariantGroup; 1049 | children = ( 1050 | 13B07FB21A68108700A75B9A /* Base */, 1051 | ); 1052 | name = LaunchScreen.xib; 1053 | path = ReactWp; 1054 | sourceTree = ""; 1055 | }; 1056 | /* End PBXVariantGroup section */ 1057 | 1058 | /* Begin XCBuildConfiguration section */ 1059 | 00E356F61AD99517003FC87E /* Debug */ = { 1060 | isa = XCBuildConfiguration; 1061 | buildSettings = { 1062 | BUNDLE_LOADER = "$(TEST_HOST)"; 1063 | GCC_PREPROCESSOR_DEFINITIONS = ( 1064 | "DEBUG=1", 1065 | "$(inherited)", 1066 | ); 1067 | INFOPLIST_FILE = ReactWpTests/Info.plist; 1068 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1069 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1070 | OTHER_LDFLAGS = ( 1071 | "-ObjC", 1072 | "-lc++", 1073 | ); 1074 | PRODUCT_NAME = "$(TARGET_NAME)"; 1075 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactWp.app/ReactWp"; 1076 | LIBRARY_SEARCH_PATHS = ( 1077 | "$(inherited)", 1078 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1079 | ); 1080 | }; 1081 | name = Debug; 1082 | }; 1083 | 00E356F71AD99517003FC87E /* Release */ = { 1084 | isa = XCBuildConfiguration; 1085 | buildSettings = { 1086 | BUNDLE_LOADER = "$(TEST_HOST)"; 1087 | COPY_PHASE_STRIP = NO; 1088 | INFOPLIST_FILE = ReactWpTests/Info.plist; 1089 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1090 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1091 | OTHER_LDFLAGS = ( 1092 | "-ObjC", 1093 | "-lc++", 1094 | ); 1095 | PRODUCT_NAME = "$(TARGET_NAME)"; 1096 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactWp.app/ReactWp"; 1097 | LIBRARY_SEARCH_PATHS = ( 1098 | "$(inherited)", 1099 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1100 | ); 1101 | }; 1102 | name = Release; 1103 | }; 1104 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1105 | isa = XCBuildConfiguration; 1106 | buildSettings = { 1107 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1108 | CURRENT_PROJECT_VERSION = 1; 1109 | DEAD_CODE_STRIPPING = NO; 1110 | INFOPLIST_FILE = ReactWp/Info.plist; 1111 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1112 | OTHER_LDFLAGS = ( 1113 | "$(inherited)", 1114 | "-ObjC", 1115 | "-lc++", 1116 | ); 1117 | PRODUCT_NAME = ReactWp; 1118 | VERSIONING_SYSTEM = "apple-generic"; 1119 | }; 1120 | name = Debug; 1121 | }; 1122 | 13B07F951A680F5B00A75B9A /* Release */ = { 1123 | isa = XCBuildConfiguration; 1124 | buildSettings = { 1125 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1126 | CURRENT_PROJECT_VERSION = 1; 1127 | INFOPLIST_FILE = ReactWp/Info.plist; 1128 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1129 | OTHER_LDFLAGS = ( 1130 | "$(inherited)", 1131 | "-ObjC", 1132 | "-lc++", 1133 | ); 1134 | PRODUCT_NAME = ReactWp; 1135 | VERSIONING_SYSTEM = "apple-generic"; 1136 | }; 1137 | name = Release; 1138 | }; 1139 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1140 | isa = XCBuildConfiguration; 1141 | buildSettings = { 1142 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1143 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1144 | CLANG_ANALYZER_NONNULL = YES; 1145 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1146 | CLANG_WARN_INFINITE_RECURSION = YES; 1147 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1148 | DEBUG_INFORMATION_FORMAT = dwarf; 1149 | ENABLE_TESTABILITY = YES; 1150 | GCC_NO_COMMON_BLOCKS = YES; 1151 | INFOPLIST_FILE = "ReactWp-tvOS/Info.plist"; 1152 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1153 | OTHER_LDFLAGS = ( 1154 | "-ObjC", 1155 | "-lc++", 1156 | ); 1157 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactWp-tvOS"; 1158 | PRODUCT_NAME = "$(TARGET_NAME)"; 1159 | SDKROOT = appletvos; 1160 | TARGETED_DEVICE_FAMILY = 3; 1161 | TVOS_DEPLOYMENT_TARGET = 9.2; 1162 | LIBRARY_SEARCH_PATHS = ( 1163 | "$(inherited)", 1164 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1165 | ); 1166 | }; 1167 | name = Debug; 1168 | }; 1169 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1170 | isa = XCBuildConfiguration; 1171 | buildSettings = { 1172 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1173 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1174 | CLANG_ANALYZER_NONNULL = YES; 1175 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1176 | CLANG_WARN_INFINITE_RECURSION = YES; 1177 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1178 | COPY_PHASE_STRIP = NO; 1179 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1180 | GCC_NO_COMMON_BLOCKS = YES; 1181 | INFOPLIST_FILE = "ReactWp-tvOS/Info.plist"; 1182 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1183 | OTHER_LDFLAGS = ( 1184 | "-ObjC", 1185 | "-lc++", 1186 | ); 1187 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactWp-tvOS"; 1188 | PRODUCT_NAME = "$(TARGET_NAME)"; 1189 | SDKROOT = appletvos; 1190 | TARGETED_DEVICE_FAMILY = 3; 1191 | TVOS_DEPLOYMENT_TARGET = 9.2; 1192 | LIBRARY_SEARCH_PATHS = ( 1193 | "$(inherited)", 1194 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1195 | ); 1196 | }; 1197 | name = Release; 1198 | }; 1199 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1200 | isa = XCBuildConfiguration; 1201 | buildSettings = { 1202 | BUNDLE_LOADER = "$(TEST_HOST)"; 1203 | CLANG_ANALYZER_NONNULL = YES; 1204 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1205 | CLANG_WARN_INFINITE_RECURSION = YES; 1206 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1207 | DEBUG_INFORMATION_FORMAT = dwarf; 1208 | ENABLE_TESTABILITY = YES; 1209 | GCC_NO_COMMON_BLOCKS = YES; 1210 | INFOPLIST_FILE = "ReactWp-tvOSTests/Info.plist"; 1211 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1212 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactWp-tvOSTests"; 1213 | PRODUCT_NAME = "$(TARGET_NAME)"; 1214 | SDKROOT = appletvos; 1215 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactWp-tvOS.app/ReactWp-tvOS"; 1216 | TVOS_DEPLOYMENT_TARGET = 10.1; 1217 | LIBRARY_SEARCH_PATHS = ( 1218 | "$(inherited)", 1219 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1220 | ); 1221 | }; 1222 | name = Debug; 1223 | }; 1224 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1225 | isa = XCBuildConfiguration; 1226 | buildSettings = { 1227 | BUNDLE_LOADER = "$(TEST_HOST)"; 1228 | CLANG_ANALYZER_NONNULL = YES; 1229 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1230 | CLANG_WARN_INFINITE_RECURSION = YES; 1231 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1232 | COPY_PHASE_STRIP = NO; 1233 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1234 | GCC_NO_COMMON_BLOCKS = YES; 1235 | INFOPLIST_FILE = "ReactWp-tvOSTests/Info.plist"; 1236 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1237 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactWp-tvOSTests"; 1238 | PRODUCT_NAME = "$(TARGET_NAME)"; 1239 | SDKROOT = appletvos; 1240 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactWp-tvOS.app/ReactWp-tvOS"; 1241 | TVOS_DEPLOYMENT_TARGET = 10.1; 1242 | LIBRARY_SEARCH_PATHS = ( 1243 | "$(inherited)", 1244 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1245 | ); 1246 | }; 1247 | name = Release; 1248 | }; 1249 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1250 | isa = XCBuildConfiguration; 1251 | buildSettings = { 1252 | ALWAYS_SEARCH_USER_PATHS = NO; 1253 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1254 | CLANG_CXX_LIBRARY = "libc++"; 1255 | CLANG_ENABLE_MODULES = YES; 1256 | CLANG_ENABLE_OBJC_ARC = YES; 1257 | CLANG_WARN_BOOL_CONVERSION = YES; 1258 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1259 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1260 | CLANG_WARN_EMPTY_BODY = YES; 1261 | CLANG_WARN_ENUM_CONVERSION = YES; 1262 | CLANG_WARN_INT_CONVERSION = YES; 1263 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1264 | CLANG_WARN_UNREACHABLE_CODE = YES; 1265 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1266 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1267 | COPY_PHASE_STRIP = NO; 1268 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1269 | GCC_C_LANGUAGE_STANDARD = gnu99; 1270 | GCC_DYNAMIC_NO_PIC = NO; 1271 | GCC_OPTIMIZATION_LEVEL = 0; 1272 | GCC_PREPROCESSOR_DEFINITIONS = ( 1273 | "DEBUG=1", 1274 | "$(inherited)", 1275 | ); 1276 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1277 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1278 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1279 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1280 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1281 | GCC_WARN_UNUSED_FUNCTION = YES; 1282 | GCC_WARN_UNUSED_VARIABLE = YES; 1283 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1284 | MTL_ENABLE_DEBUG_INFO = YES; 1285 | ONLY_ACTIVE_ARCH = YES; 1286 | SDKROOT = iphoneos; 1287 | }; 1288 | name = Debug; 1289 | }; 1290 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1291 | isa = XCBuildConfiguration; 1292 | buildSettings = { 1293 | ALWAYS_SEARCH_USER_PATHS = NO; 1294 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1295 | CLANG_CXX_LIBRARY = "libc++"; 1296 | CLANG_ENABLE_MODULES = YES; 1297 | CLANG_ENABLE_OBJC_ARC = YES; 1298 | CLANG_WARN_BOOL_CONVERSION = YES; 1299 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1300 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1301 | CLANG_WARN_EMPTY_BODY = YES; 1302 | CLANG_WARN_ENUM_CONVERSION = YES; 1303 | CLANG_WARN_INT_CONVERSION = YES; 1304 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1305 | CLANG_WARN_UNREACHABLE_CODE = YES; 1306 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1307 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1308 | COPY_PHASE_STRIP = YES; 1309 | ENABLE_NS_ASSERTIONS = NO; 1310 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1311 | GCC_C_LANGUAGE_STANDARD = gnu99; 1312 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1313 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1314 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1315 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1316 | GCC_WARN_UNUSED_FUNCTION = YES; 1317 | GCC_WARN_UNUSED_VARIABLE = YES; 1318 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1319 | MTL_ENABLE_DEBUG_INFO = NO; 1320 | SDKROOT = iphoneos; 1321 | VALIDATE_PRODUCT = YES; 1322 | }; 1323 | name = Release; 1324 | }; 1325 | /* End XCBuildConfiguration section */ 1326 | 1327 | /* Begin XCConfigurationList section */ 1328 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactWpTests" */ = { 1329 | isa = XCConfigurationList; 1330 | buildConfigurations = ( 1331 | 00E356F61AD99517003FC87E /* Debug */, 1332 | 00E356F71AD99517003FC87E /* Release */, 1333 | ); 1334 | defaultConfigurationIsVisible = 0; 1335 | defaultConfigurationName = Release; 1336 | }; 1337 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactWp" */ = { 1338 | isa = XCConfigurationList; 1339 | buildConfigurations = ( 1340 | 13B07F941A680F5B00A75B9A /* Debug */, 1341 | 13B07F951A680F5B00A75B9A /* Release */, 1342 | ); 1343 | defaultConfigurationIsVisible = 0; 1344 | defaultConfigurationName = Release; 1345 | }; 1346 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactWp-tvOS" */ = { 1347 | isa = XCConfigurationList; 1348 | buildConfigurations = ( 1349 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1350 | 2D02E4981E0B4A5E006451C7 /* Release */, 1351 | ); 1352 | defaultConfigurationIsVisible = 0; 1353 | defaultConfigurationName = Release; 1354 | }; 1355 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactWp-tvOSTests" */ = { 1356 | isa = XCConfigurationList; 1357 | buildConfigurations = ( 1358 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1359 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1360 | ); 1361 | defaultConfigurationIsVisible = 0; 1362 | defaultConfigurationName = Release; 1363 | }; 1364 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactWp" */ = { 1365 | isa = XCConfigurationList; 1366 | buildConfigurations = ( 1367 | 83CBBA201A601CBA00E9B192 /* Debug */, 1368 | 83CBBA211A601CBA00E9B192 /* Release */, 1369 | ); 1370 | defaultConfigurationIsVisible = 0; 1371 | defaultConfigurationName = Release; 1372 | }; 1373 | /* End XCConfigurationList section */ 1374 | }; 1375 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1376 | } 1377 | -------------------------------------------------------------------------------- /ios/ReactWp.xcodeproj/xcshareddata/xcschemes/ReactWp-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/ReactWp.xcodeproj/xcshareddata/xcschemes/ReactWp.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/ReactWp/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/ReactWp/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:@"ReactWp" 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/ReactWp/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/ReactWp/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/ReactWp/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 | NSExceptionDomains 44 | 45 | localhost 46 | 47 | NSExceptionAllowsInsecureHTTPLoads 48 | 49 | 50 | 51 | 52 | UIAppFonts 53 | 54 | Andale Mono.ttf 55 | Arial Black.ttf 56 | Arial.ttf 57 | Comic Sans MS.ttf 58 | Courier New.ttf 59 | Georgia.ttf 60 | Microsoft Sans Serif.ttf 61 | Roboto_medium.ttf 62 | Roboto.ttf 63 | SF-UI-Text-Regular.otf 64 | Skia.ttf 65 | Times New Roman.ttf 66 | Entypo.ttf 67 | EvilIcons.ttf 68 | FontAwesome.ttf 69 | Foundation.ttf 70 | Ionicons.ttf 71 | MaterialCommunityIcons.ttf 72 | MaterialIcons.ttf 73 | Octicons.ttf 74 | SimpleLineIcons.ttf 75 | Zocial.ttf 76 | 77 | 78 | -------------------------------------------------------------------------------- /ios/ReactWp/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/ReactWpTests/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/ReactWpTests/ReactWpTests.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 ReactWpTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation ReactWpTests 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 = [[[[UIApplication sharedApplication] 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": "ReactWp", 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 | "native-base": "^0.5.22", 11 | "react": "~15.4.0-rc.4", 12 | "react-native": "0.41.1", 13 | "react-native-drawer": "^2.3.0", 14 | "react-native-router-flux": "^3.37.0", 15 | "react-native-vector-icons": "^4.0.0" 16 | }, 17 | "devDependencies": { 18 | "babel-jest": "18.0.0", 19 | "babel-preset-react-native": "1.9.1", 20 | "jest": "18.1.0", 21 | "react-test-renderer": "~15.4.0-rc.4" 22 | }, 23 | "jest": { 24 | "preset": "react-native" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Components/Post/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | import {StyleSheet, WebView } from 'react-native'; 4 | 5 | import { Grid, Row, Col, Text, Button} from 'native-base'; 6 | 7 | 8 | export default class Post extends Component { 9 | webview = null; 10 | 11 | constructor(props) { 12 | super(props); 13 | 14 | this.state = { 15 | tamanho: 122, 16 | post: props.post, 17 | }; 18 | } 19 | 20 | _postMessage = ( ) => { 21 | this.webview.postMessage( "Hello" ); 22 | console.log( "Posted message" ); 23 | } 24 | 25 | _receivedMessage = ( e ) => { 26 | console.log("Received message"); 27 | this.setState( { tamanho: parseInt(e.nativeEvent.data)} ); 28 | } 29 | 30 | componentDidMount() { 31 | this._postMessage(); 32 | } 33 | 34 | render() { 35 | let post = this.state.post; 36 | //fix para tamanho do webview 37 | 38 | let HTML ='' + 39 | '' + 40 | '' + 41 | '' + 42 | '' + 43 | post.content.rendered + 44 | '' + 45 | ''; 46 | 47 | let styles = { 48 | height: this.state.tamanho 49 | }; 50 | 51 | let javascript = 'window.location.hash = 1;' + 52 | 'document.title = document.body.scrollHeight;' + 53 | 'window.postMessage( document.body.scrollHeight );'; 54 | 55 | return ( 56 | 57 | 58 | 59 | {post.title.rendered} 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | { this.webview = webview; }} 71 | injectedJavaScript={javascript} 72 | javaScriptEnabled={true} 73 | javaScriptEnabledAndroid={true} 74 | onMessage={this._receivedMessage} 75 | style={styles} 76 | source={{html: HTML}} /> 77 | 78 | 79 | 80 | ); 81 | } 82 | } 83 | 84 | const Styles = StyleSheet.create({ 85 | button: { 86 | flex:1, 87 | flexDirection:'row', 88 | alignItems:'center', 89 | justifyContent:'center' 90 | }, 91 | 92 | title: { 93 | fontWeight: 'bold', 94 | fontSize: 28, 95 | margin: 10 96 | }, 97 | 98 | content: { 99 | flex: 1, 100 | height: 1200, 101 | margin: 10 102 | } 103 | }); -------------------------------------------------------------------------------- /src/Components/Posts/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | import {StyleSheet, WebView } from 'react-native'; 4 | 5 | import { Grid, Row, List, ListItem, Col, Text, Button} from 'native-base'; 6 | import { Actions } from 'react-native-router-flux'; 7 | 8 | 9 | export default class Posts extends Component { 10 | webview = null; 11 | 12 | constructor(props) { 13 | super(props); 14 | 15 | console.log(props); 16 | this.state = { 17 | posts: props.posts, 18 | title: props.title 19 | }; 20 | } 21 | 22 | componentWillReceiveProps( props ) { 23 | this.setState({ 24 | posts: props.posts, 25 | title: props.title 26 | }); 27 | } 28 | 29 | 30 | render() { 31 | let posts = this.state.posts; 32 | let title = this.state.title; 33 | 34 | const gotoPost = ( post ) => Actions.post( { post, title: "Ler artigo" } ); 35 | return ( 36 | 37 | 38 | {title} 39 | 40 | {posts.map( ( post, i ) => 41 | gotoPost( post )}> 42 | {post.title.rendered} 43 | 44 | )} 45 | 46 | ); 47 | } 48 | } -------------------------------------------------------------------------------- /src/Components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@components" 3 | } 4 | -------------------------------------------------------------------------------- /src/Configs/Webserver.js: -------------------------------------------------------------------------------- 1 | export const WP_SERVER = 'http://noivasfortaleza.com.br/wp-json/wp/v2'; 2 | -------------------------------------------------------------------------------- /src/Configs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@configs" 3 | } 4 | -------------------------------------------------------------------------------- /src/Containers/Categoria/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | 5 | import { Container, Content, List, ListItem, Text } from 'native-base'; 6 | 7 | import Integracao from '@helpers/Integracao'; 8 | 9 | import {default as PostsComponent} from '@components/Posts'; 10 | 11 | 12 | export default class Categoria extends Component { 13 | categoria = null; 14 | 15 | constructor(props) { 16 | super(props); 17 | 18 | this.categoria = props.categoria; 19 | 20 | this.state = { 21 | posts: [], 22 | }; 23 | } 24 | 25 | componentDidMount() { 26 | Integracao.getPostsByCategory( this.categoria.id ) 27 | .then((response) => response.json()) 28 | .then( (responseJson) => { 29 | this.setPosts( responseJson ); 30 | }).done(); 31 | } 32 | 33 | setPosts( data ) { 34 | this.setState( { posts: data } ); 35 | } 36 | 37 | getPosts() { 38 | return this.state.posts 39 | } 40 | 41 | render() { 42 | let posts = this.getPosts(); 43 | 44 | return ( 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | ); 53 | } 54 | } -------------------------------------------------------------------------------- /src/Containers/Home/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View } from 'react-native'; 3 | 4 | import { Container, Content, List, ListItem, Text } from 'native-base'; 5 | 6 | import Integracao from '@helpers/Integracao'; 7 | import {default as PostsComponent } from '@components/Posts'; 8 | 9 | 10 | export default class Home extends Component { 11 | constructor(props) { 12 | super(props); 13 | this.state = { 14 | posts: [], 15 | }; 16 | } 17 | 18 | componentDidMount() { 19 | Integracao.getPosts() 20 | .then((response) => response.json()) 21 | .then( (responseJson) => { 22 | this.setPosts( responseJson ); 23 | }) 24 | } 25 | 26 | setPosts( data ) { 27 | this.setState( { posts: data } ); 28 | } 29 | 30 | getPosts() { 31 | console.log( "Get posts" ); 32 | return this.state.posts 33 | } 34 | 35 | render() { 36 | let posts = this.getPosts(); 37 | return ( 38 | 39 | 40 | 41 | 42 | 43 | 44 | ); 45 | } 46 | } -------------------------------------------------------------------------------- /src/Containers/Post/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | 5 | import { Container, Content, List, ListItem, Text } from 'native-base'; 6 | 7 | import {default as PostComponent} from '@components/Post'; 8 | 9 | export default class Post extends Component { 10 | constructor(props) { 11 | super(props); 12 | 13 | this.state = { 14 | post: props.navigationState.post 15 | }; 16 | } 17 | 18 | render() { 19 | let post = this.state.post; 20 | 21 | return ( 22 | 23 | 24 | 25 | 26 | 27 | ); 28 | } 29 | } -------------------------------------------------------------------------------- /src/Containers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@containers" 3 | } 4 | -------------------------------------------------------------------------------- /src/Helpers/Integracao/index.js: -------------------------------------------------------------------------------- 1 | import * as CONFIG from '@configs/Webserver'; 2 | 3 | 4 | class Integracao { 5 | getPosts() { 6 | return fetch(CONFIG.WP_SERVER + '/posts' ); 7 | } 8 | 9 | getPostsByCategory( categoryId ) { 10 | return fetch(CONFIG.WP_SERVER + '/posts?categories=' + parseInt( categoryId ) ); 11 | 12 | } 13 | 14 | getCategories() { 15 | return fetch(CONFIG.WP_SERVER + '/categories' ); 16 | } 17 | } 18 | 19 | export default new Integracao(); -------------------------------------------------------------------------------- /src/Helpers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@helpers" 3 | } 4 | -------------------------------------------------------------------------------- /src/MenuDrawer.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {Text, ScrollView} from 'react-native'; 3 | import Drawer from 'react-native-drawer'; 4 | 5 | import { Grid, Col, Row, List, ListItem } from 'native-base'; 6 | 7 | import {Actions, DefaultRenderer} from 'react-native-router-flux'; 8 | import Integracao from "@helpers/Integracao"; 9 | 10 | import {StyleSheet } from 'react-native'; 11 | 12 | class SideMenu extends React.Component { 13 | 14 | constructor( props ) { 15 | super(props); 16 | 17 | this.state = { 18 | categorias: [], 19 | }; 20 | } 21 | 22 | setCategories( categorias ) { 23 | this.setState( { categorias } ); 24 | } 25 | componentWillMount() { 26 | Integracao.getCategories() 27 | .then((response) => response.json()) 28 | .then( (responseJson) => { 29 | let cats = []; 30 | 31 | responseJson.forEach( ( c ) => { 32 | if( c.count > 0 ) 33 | cats.push(c); 34 | }) 35 | this.setCategories( cats ); 36 | }).done(); 37 | 38 | } 39 | 40 | render() { 41 | let categorias = this.state.categorias; 42 | const gotoCategoria = ( categoria ) => Actions.categoria( { 43 | categoria: categoria, 44 | title: "Artigos em " + categoria.name } ); 45 | return ( 46 | 47 | 48 | 49 | Noivas Fortaleza 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | Categorias do Site 58 | 59 | {categorias.map( ( categoria, i ) => 60 | gotoCategoria( categoria )}> 61 | {categoria.name} ({categoria.count}) 62 | 63 | )} 64 | 65 | 66 | 67 | 68 | 69 | ) 70 | } 71 | } 72 | 73 | export default class extends React.Component { 74 | render(){ 75 | const state = this.props.navigationState; 76 | const children = state.children; 77 | return ( 78 | Actions.refresh({key:state.key, open: true})} 82 | onClose={()=>Actions.refresh({key:state.key, open: false})} 83 | type="displace" 84 | content={} 85 | tapToClose={true} 86 | openDrawerOffset={0.2} 87 | panCloseMask={0.2} 88 | negotiatePan={true} 89 | tweenHandler={(ratio) => ({ 90 | main: { opacity:Math.max(0.54,1-ratio) } 91 | })}> 92 | 93 | 94 | ); 95 | } 96 | } 97 | 98 | 99 | const Styles = StyleSheet.create({ 100 | headerCol: { 101 | backgroundColor: '#ee4e9a' 102 | }, 103 | 104 | menuHeader: { 105 | fontWeight: 'bold', 106 | color: '#fff', 107 | fontSize: 18, 108 | margin: 10 109 | } 110 | }); -------------------------------------------------------------------------------- /src/Routes.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import {Scene, Router} from 'react-native-router-flux'; 4 | 5 | import Home from '@containers/Home'; 6 | import Post from '@containers/Post'; 7 | import Categoria from '@containers/Categoria'; 8 | 9 | import MenuDrawer from './MenuDrawer.js'; 10 | 11 | export default class Routes extends React.Component { 12 | render() { 13 | return( 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | ) 24 | } 25 | } 26 | --------------------------------------------------------------------------------