├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.vue ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── loginapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── assets ├── drawer-cover.png ├── launchscreen-bg.png ├── logo-kitchen-sink.png └── user.png ├── gif └── vue-native-starter-app.gif ├── index.js ├── ios ├── loginApp-tvOS │ └── Info.plist ├── loginApp-tvOSTests │ └── Info.plist ├── loginApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── loginApp-tvOS.xcscheme │ │ └── loginApp.xcscheme ├── loginApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── loginAppTests │ ├── Info.plist │ └── loginAppTests.m ├── package.json ├── rn-cli.config.js ├── src ├── components │ └── item.vue ├── index.vue ├── screen │ ├── home.vue │ ├── login.vue │ └── sidebar.vue ├── setup.vue └── store │ ├── actions.js │ ├── fetch.js │ ├── index.js │ └── mutations.js ├── vueTransformerPlugin.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | [version] 54 | ^0.67.0 55 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-present, Yuxi (Evan) You 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## Title 3 | 4 | Sample Login App with Vue Native and Vuex with Validations 5 | 6 | ## Demo 7 | 8 | vue-native-starter app 9 | 10 | ## Installation 11 | 12 | * **Clone and install packages** 13 | 14 | ``` 15 | git clone https://github.com/GeekyAnts/vue-native-starter-app.git 16 | cd vue-native-starter-app 17 | yarn 18 | ``` 19 | * **Run on iOS** 20 | * Run `react-native run-ios` in your terminal 21 | 22 | - **Run on Android** 23 | * Make sure you have an `Android emulator` installed and running 24 | * Run `react-native run-android` in your terminal 25 | 26 | ## Libraries used 27 | 28 | * **Packages Used** 29 | 30 | * native-base: 2.6.1 31 | * react: 16.3.1 32 | * react-native: 0.55.4 33 | * vue-native-core: 0.0.7 34 | * vue-native-helper: 0.0.8 35 | * vue-native-router: 0.0.1-alpha.3 36 | * vuelidate: 0.7.4 37 | * vuex: 3.0.1 38 | 39 | ## Folder structure 40 | The source files are located in `src` folder. All the assets file are under assets folder. 41 | All the screens which refer to the main route (Entry Points) are under `screen` and the compenents related to those screens are inside `components`. 42 | 43 | ## Usage of vuelidate and vuex 44 | 45 | * Validation 46 | Since vuelidate cannot identify the events for dirty natively. We can $touched for a partiuclar event to mark a field as dirty. For example in login.vue, for email field we have used `:on-blur="() => $v.emailValue.$touch()"` to mark a field as dirty when the field loses it's focus. 47 | 48 | * Store 49 | We have used vuex for state management. The actions, mutations and the store are specified under `store/index.js`. The actions specify the action which are fired using `store.dispatch` method. The mutations specify the modifications on an object for a particular action. 50 | 51 | ## License 52 | 53 | [MIT](http://opensource.org/licenses/MIT) 54 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.loginapp", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.loginapp", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion 23 98 | buildToolsVersion "23.0.1" 99 | 100 | defaultConfig { 101 | applicationId "com.loginapp" 102 | minSdkVersion 16 103 | targetSdkVersion 22 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile project(':react-native-vector-icons') 141 | compile fileTree(dir: "libs", include: ["*.jar"]) 142 | compile "com.android.support:appcompat-v7:23.0.1" 143 | compile "com.facebook.react:react-native:+" // From node_modules 144 | } 145 | 146 | // Run this once to be able to run the application with BUCK 147 | // puts all compile dependencies into folder libs for BUCK to use 148 | task copyDownloadableDepsToLibs(type: Copy) { 149 | from configurations.compile 150 | into 'libs' 151 | } 152 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/loginapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.loginapp; 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 "loginApp"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/loginapp/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.loginapp; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage(), 27 | new VectorIconsPackage() 28 | ); 29 | } 30 | 31 | @Override 32 | protected String getJSMainModuleName() { 33 | return "index"; 34 | } 35 | }; 36 | 37 | @Override 38 | public ReactNativeHost getReactNativeHost() { 39 | return mReactNativeHost; 40 | } 41 | 42 | @Override 43 | public void onCreate() { 44 | super.onCreate(); 45 | SoLoader.init(this, /* native exopackage */ false); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | loginApp 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'loginApp' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "loginApp", 3 | "displayName": "loginApp" 4 | } -------------------------------------------------------------------------------- /assets/drawer-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/assets/drawer-cover.png -------------------------------------------------------------------------------- /assets/launchscreen-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/assets/launchscreen-bg.png -------------------------------------------------------------------------------- /assets/logo-kitchen-sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/assets/logo-kitchen-sink.png -------------------------------------------------------------------------------- /assets/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/assets/user.png -------------------------------------------------------------------------------- /gif/vue-native-starter-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/vue-native-starter-app/983b88713616836be2f89bb8695db61208f5f80c/gif/vue-native-starter-app.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './App'; 3 | 4 | AppRegistry.registerComponent('loginApp', () => App); 5 | -------------------------------------------------------------------------------- /ios/loginApp-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/loginApp-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/loginApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* loginAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* loginAppTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* loginAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* loginAppTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 2E4BD0661A21422482E272C6 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 261E33EFE1924893B21DA1DB /* MaterialIcons.ttf */; }; 39 | 366633FA948C478C9EF54CC7 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6B6BC4890A8441DCA18D1600 /* Entypo.ttf */; }; 40 | 3C4A856A25674FCE93E0D007 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B6FD9B53A3A642BEBA90FA22 /* MaterialCommunityIcons.ttf */; }; 41 | 44C2F9AE1985479E970E80B0 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8A1CDA0FA41646B0A32C137E /* SimpleLineIcons.ttf */; }; 42 | 491396B45531417FB99B22F5 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3863110F31B844BC8C103755 /* Ionicons.ttf */; }; 43 | 5C2D564425CB4E808089F499 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C4DB0FCFC0DA438BBF034B6A /* libRNVectorIcons.a */; }; 44 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 45 | 6DF865F36C6145D884A5EB3D /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D8E37B8FDACD4D3AAFD48453 /* FontAwesome.ttf */; }; 46 | 75A408B0206C49668FE785CD /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2DEB58012DF64CF8AE94630C /* Octicons.ttf */; }; 47 | 7C3878DE64074D8D9AA3C0EE /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 70DE17B1AEC348A69B321C21 /* Foundation.ttf */; }; 48 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 49 | 8E3D719985B440B8B438A96D /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D1C3C65FD00A4DB7A4DD0A5C /* Feather.ttf */; }; 50 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 51 | DA22BB95520848DC8F97DB22 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CB0B5BE318C04AFF8E47ECED /* Zocial.ttf */; }; 52 | E04075B1DC3B4E3DAC8D1FE8 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8EAB2DEB134140A3B2A0C993 /* EvilIcons.ttf */; }; 53 | /* End PBXBuildFile section */ 54 | 55 | /* Begin PBXContainerItemProxy section */ 56 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 57 | isa = PBXContainerItemProxy; 58 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 59 | proxyType = 2; 60 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 61 | remoteInfo = RCTActionSheet; 62 | }; 63 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 64 | isa = PBXContainerItemProxy; 65 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 66 | proxyType = 2; 67 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 68 | remoteInfo = RCTGeolocation; 69 | }; 70 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 71 | isa = PBXContainerItemProxy; 72 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 73 | proxyType = 2; 74 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 75 | remoteInfo = RCTImage; 76 | }; 77 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 78 | isa = PBXContainerItemProxy; 79 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 80 | proxyType = 2; 81 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 82 | remoteInfo = RCTNetwork; 83 | }; 84 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 85 | isa = PBXContainerItemProxy; 86 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 87 | proxyType = 2; 88 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 89 | remoteInfo = RCTVibration; 90 | }; 91 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 92 | isa = PBXContainerItemProxy; 93 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 94 | proxyType = 1; 95 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 96 | remoteInfo = loginApp; 97 | }; 98 | 07C5272920E372A500015DD8 /* PBXContainerItemProxy */ = { 99 | isa = PBXContainerItemProxy; 100 | containerPortal = C022BFD168574143AA00F3E6 /* RNVectorIcons.xcodeproj */; 101 | proxyType = 2; 102 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 103 | remoteInfo = RNVectorIcons; 104 | }; 105 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 106 | isa = PBXContainerItemProxy; 107 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 108 | proxyType = 2; 109 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 110 | remoteInfo = RCTSettings; 111 | }; 112 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 113 | isa = PBXContainerItemProxy; 114 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 115 | proxyType = 2; 116 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 117 | remoteInfo = RCTWebSocket; 118 | }; 119 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 120 | isa = PBXContainerItemProxy; 121 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 122 | proxyType = 2; 123 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 124 | remoteInfo = React; 125 | }; 126 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 127 | isa = PBXContainerItemProxy; 128 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 129 | proxyType = 1; 130 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 131 | remoteInfo = "loginApp-tvOS"; 132 | }; 133 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 134 | isa = PBXContainerItemProxy; 135 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 136 | proxyType = 2; 137 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 138 | remoteInfo = "RCTBlob-tvOS"; 139 | }; 140 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 141 | isa = PBXContainerItemProxy; 142 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 143 | proxyType = 2; 144 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 145 | remoteInfo = fishhook; 146 | }; 147 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 148 | isa = PBXContainerItemProxy; 149 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 150 | proxyType = 2; 151 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 152 | remoteInfo = "fishhook-tvOS"; 153 | }; 154 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 155 | isa = PBXContainerItemProxy; 156 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 157 | proxyType = 2; 158 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 159 | remoteInfo = jsinspector; 160 | }; 161 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 162 | isa = PBXContainerItemProxy; 163 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 164 | proxyType = 2; 165 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 166 | remoteInfo = "jsinspector-tvOS"; 167 | }; 168 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 169 | isa = PBXContainerItemProxy; 170 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 171 | proxyType = 2; 172 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 173 | remoteInfo = "third-party"; 174 | }; 175 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 176 | isa = PBXContainerItemProxy; 177 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 178 | proxyType = 2; 179 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 180 | remoteInfo = "third-party-tvOS"; 181 | }; 182 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 183 | isa = PBXContainerItemProxy; 184 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 185 | proxyType = 2; 186 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 187 | remoteInfo = "double-conversion"; 188 | }; 189 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 190 | isa = PBXContainerItemProxy; 191 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 192 | proxyType = 2; 193 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 194 | remoteInfo = "double-conversion-tvOS"; 195 | }; 196 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 197 | isa = PBXContainerItemProxy; 198 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 199 | proxyType = 2; 200 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 201 | remoteInfo = privatedata; 202 | }; 203 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 204 | isa = PBXContainerItemProxy; 205 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 206 | proxyType = 2; 207 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 208 | remoteInfo = "privatedata-tvOS"; 209 | }; 210 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 211 | isa = PBXContainerItemProxy; 212 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 213 | proxyType = 2; 214 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 215 | remoteInfo = "RCTImage-tvOS"; 216 | }; 217 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 218 | isa = PBXContainerItemProxy; 219 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 220 | proxyType = 2; 221 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 222 | remoteInfo = "RCTLinking-tvOS"; 223 | }; 224 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 225 | isa = PBXContainerItemProxy; 226 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 227 | proxyType = 2; 228 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 229 | remoteInfo = "RCTNetwork-tvOS"; 230 | }; 231 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 232 | isa = PBXContainerItemProxy; 233 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 234 | proxyType = 2; 235 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 236 | remoteInfo = "RCTSettings-tvOS"; 237 | }; 238 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 239 | isa = PBXContainerItemProxy; 240 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 241 | proxyType = 2; 242 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 243 | remoteInfo = "RCTText-tvOS"; 244 | }; 245 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 246 | isa = PBXContainerItemProxy; 247 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 248 | proxyType = 2; 249 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 250 | remoteInfo = "RCTWebSocket-tvOS"; 251 | }; 252 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 253 | isa = PBXContainerItemProxy; 254 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 255 | proxyType = 2; 256 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 257 | remoteInfo = "React-tvOS"; 258 | }; 259 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 260 | isa = PBXContainerItemProxy; 261 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 262 | proxyType = 2; 263 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 264 | remoteInfo = yoga; 265 | }; 266 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 267 | isa = PBXContainerItemProxy; 268 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 269 | proxyType = 2; 270 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 271 | remoteInfo = "yoga-tvOS"; 272 | }; 273 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 274 | isa = PBXContainerItemProxy; 275 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 276 | proxyType = 2; 277 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 278 | remoteInfo = cxxreact; 279 | }; 280 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 281 | isa = PBXContainerItemProxy; 282 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 283 | proxyType = 2; 284 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 285 | remoteInfo = "cxxreact-tvOS"; 286 | }; 287 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 288 | isa = PBXContainerItemProxy; 289 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 290 | proxyType = 2; 291 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 292 | remoteInfo = jschelpers; 293 | }; 294 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 295 | isa = PBXContainerItemProxy; 296 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 297 | proxyType = 2; 298 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 299 | remoteInfo = "jschelpers-tvOS"; 300 | }; 301 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 302 | isa = PBXContainerItemProxy; 303 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 304 | proxyType = 2; 305 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 306 | remoteInfo = RCTAnimation; 307 | }; 308 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 309 | isa = PBXContainerItemProxy; 310 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 311 | proxyType = 2; 312 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 313 | remoteInfo = "RCTAnimation-tvOS"; 314 | }; 315 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 316 | isa = PBXContainerItemProxy; 317 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 318 | proxyType = 2; 319 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 320 | remoteInfo = RCTLinking; 321 | }; 322 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 323 | isa = PBXContainerItemProxy; 324 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 325 | proxyType = 2; 326 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 327 | remoteInfo = RCTText; 328 | }; 329 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 330 | isa = PBXContainerItemProxy; 331 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 332 | proxyType = 2; 333 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 334 | remoteInfo = RCTBlob; 335 | }; 336 | /* End PBXContainerItemProxy section */ 337 | 338 | /* Begin PBXFileReference section */ 339 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 340 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 341 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 342 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 343 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 344 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 345 | 00E356EE1AD99517003FC87E /* loginAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = loginAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 346 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 347 | 00E356F21AD99517003FC87E /* loginAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = loginAppTests.m; sourceTree = ""; }; 348 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 349 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 350 | 13B07F961A680F5B00A75B9A /* loginApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = loginApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 351 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = loginApp/AppDelegate.h; sourceTree = ""; }; 352 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = loginApp/AppDelegate.m; sourceTree = ""; }; 353 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 354 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = loginApp/Images.xcassets; sourceTree = ""; }; 355 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = loginApp/Info.plist; sourceTree = ""; }; 356 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = loginApp/main.m; sourceTree = ""; }; 357 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 358 | 261E33EFE1924893B21DA1DB /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 359 | 2D02E47B1E0B4A5D006451C7 /* loginApp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "loginApp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 360 | 2D02E4901E0B4A5D006451C7 /* loginApp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "loginApp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 361 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 362 | 2DEB58012DF64CF8AE94630C /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 363 | 3863110F31B844BC8C103755 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 364 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 365 | 6B6BC4890A8441DCA18D1600 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 366 | 70DE17B1AEC348A69B321C21 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 367 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 368 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 369 | 8A1CDA0FA41646B0A32C137E /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 370 | 8EAB2DEB134140A3B2A0C993 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 371 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 372 | B6FD9B53A3A642BEBA90FA22 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 373 | C022BFD168574143AA00F3E6 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 374 | C4DB0FCFC0DA438BBF034B6A /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 375 | CB0B5BE318C04AFF8E47ECED /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 376 | D1C3C65FD00A4DB7A4DD0A5C /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 377 | D8E37B8FDACD4D3AAFD48453 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 378 | /* End PBXFileReference section */ 379 | 380 | /* Begin PBXFrameworksBuildPhase section */ 381 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 382 | isa = PBXFrameworksBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 390 | isa = PBXFrameworksBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 394 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 395 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 396 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 397 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 398 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 399 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 400 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 401 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 402 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 403 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 404 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 405 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 406 | 5C2D564425CB4E808089F499 /* libRNVectorIcons.a in Frameworks */, 407 | ); 408 | runOnlyForDeploymentPostprocessing = 0; 409 | }; 410 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 411 | isa = PBXFrameworksBuildPhase; 412 | buildActionMask = 2147483647; 413 | files = ( 414 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 415 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 416 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 417 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 418 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 419 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 420 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 421 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 422 | ); 423 | runOnlyForDeploymentPostprocessing = 0; 424 | }; 425 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 426 | isa = PBXFrameworksBuildPhase; 427 | buildActionMask = 2147483647; 428 | files = ( 429 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 430 | ); 431 | runOnlyForDeploymentPostprocessing = 0; 432 | }; 433 | /* End PBXFrameworksBuildPhase section */ 434 | 435 | /* Begin PBXGroup section */ 436 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 437 | isa = PBXGroup; 438 | children = ( 439 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 440 | ); 441 | name = Products; 442 | sourceTree = ""; 443 | }; 444 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 445 | isa = PBXGroup; 446 | children = ( 447 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 448 | ); 449 | name = Products; 450 | sourceTree = ""; 451 | }; 452 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 453 | isa = PBXGroup; 454 | children = ( 455 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 456 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 457 | ); 458 | name = Products; 459 | sourceTree = ""; 460 | }; 461 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 462 | isa = PBXGroup; 463 | children = ( 464 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 465 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 466 | ); 467 | name = Products; 468 | sourceTree = ""; 469 | }; 470 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 471 | isa = PBXGroup; 472 | children = ( 473 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 474 | ); 475 | name = Products; 476 | sourceTree = ""; 477 | }; 478 | 00E356EF1AD99517003FC87E /* loginAppTests */ = { 479 | isa = PBXGroup; 480 | children = ( 481 | 00E356F21AD99517003FC87E /* loginAppTests.m */, 482 | 00E356F01AD99517003FC87E /* Supporting Files */, 483 | ); 484 | path = loginAppTests; 485 | sourceTree = ""; 486 | }; 487 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 488 | isa = PBXGroup; 489 | children = ( 490 | 00E356F11AD99517003FC87E /* Info.plist */, 491 | ); 492 | name = "Supporting Files"; 493 | sourceTree = ""; 494 | }; 495 | 07C5270020E372A400015DD8 /* Recovered References */ = { 496 | isa = PBXGroup; 497 | children = ( 498 | C4DB0FCFC0DA438BBF034B6A /* libRNVectorIcons.a */, 499 | ); 500 | name = "Recovered References"; 501 | sourceTree = ""; 502 | }; 503 | 07C5272620E372A500015DD8 /* Products */ = { 504 | isa = PBXGroup; 505 | children = ( 506 | 07C5272A20E372A500015DD8 /* libRNVectorIcons.a */, 507 | ); 508 | name = Products; 509 | sourceTree = ""; 510 | }; 511 | 139105B71AF99BAD00B5F7CC /* Products */ = { 512 | isa = PBXGroup; 513 | children = ( 514 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 515 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 516 | ); 517 | name = Products; 518 | sourceTree = ""; 519 | }; 520 | 139FDEE71B06529A00C62182 /* Products */ = { 521 | isa = PBXGroup; 522 | children = ( 523 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 524 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 525 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 526 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 527 | ); 528 | name = Products; 529 | sourceTree = ""; 530 | }; 531 | 13B07FAE1A68108700A75B9A /* loginApp */ = { 532 | isa = PBXGroup; 533 | children = ( 534 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 535 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 536 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 537 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 538 | 13B07FB61A68108700A75B9A /* Info.plist */, 539 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 540 | 13B07FB71A68108700A75B9A /* main.m */, 541 | ); 542 | name = loginApp; 543 | sourceTree = ""; 544 | }; 545 | 146834001AC3E56700842450 /* Products */ = { 546 | isa = PBXGroup; 547 | children = ( 548 | 146834041AC3E56700842450 /* libReact.a */, 549 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 550 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 551 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 552 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 553 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 554 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 555 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 556 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 557 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 558 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 559 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 560 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 561 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 562 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 563 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 564 | ); 565 | name = Products; 566 | sourceTree = ""; 567 | }; 568 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 569 | isa = PBXGroup; 570 | children = ( 571 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 572 | ); 573 | name = Frameworks; 574 | sourceTree = ""; 575 | }; 576 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 577 | isa = PBXGroup; 578 | children = ( 579 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 580 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 581 | ); 582 | name = Products; 583 | sourceTree = ""; 584 | }; 585 | 78C398B11ACF4ADC00677621 /* Products */ = { 586 | isa = PBXGroup; 587 | children = ( 588 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 589 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 590 | ); 591 | name = Products; 592 | sourceTree = ""; 593 | }; 594 | 7E7D5181B09B40E7925D5627 /* Resources */ = { 595 | isa = PBXGroup; 596 | children = ( 597 | 6B6BC4890A8441DCA18D1600 /* Entypo.ttf */, 598 | 8EAB2DEB134140A3B2A0C993 /* EvilIcons.ttf */, 599 | D1C3C65FD00A4DB7A4DD0A5C /* Feather.ttf */, 600 | D8E37B8FDACD4D3AAFD48453 /* FontAwesome.ttf */, 601 | 70DE17B1AEC348A69B321C21 /* Foundation.ttf */, 602 | 3863110F31B844BC8C103755 /* Ionicons.ttf */, 603 | B6FD9B53A3A642BEBA90FA22 /* MaterialCommunityIcons.ttf */, 604 | 261E33EFE1924893B21DA1DB /* MaterialIcons.ttf */, 605 | 2DEB58012DF64CF8AE94630C /* Octicons.ttf */, 606 | 8A1CDA0FA41646B0A32C137E /* SimpleLineIcons.ttf */, 607 | CB0B5BE318C04AFF8E47ECED /* Zocial.ttf */, 608 | ); 609 | name = Resources; 610 | sourceTree = ""; 611 | }; 612 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 613 | isa = PBXGroup; 614 | children = ( 615 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 616 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 617 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 618 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 619 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 620 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 621 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 622 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 623 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 624 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 625 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 626 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 627 | C022BFD168574143AA00F3E6 /* RNVectorIcons.xcodeproj */, 628 | ); 629 | name = Libraries; 630 | sourceTree = ""; 631 | }; 632 | 832341B11AAA6A8300B99B32 /* Products */ = { 633 | isa = PBXGroup; 634 | children = ( 635 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 636 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 637 | ); 638 | name = Products; 639 | sourceTree = ""; 640 | }; 641 | 83CBB9F61A601CBA00E9B192 = { 642 | isa = PBXGroup; 643 | children = ( 644 | 13B07FAE1A68108700A75B9A /* loginApp */, 645 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 646 | 00E356EF1AD99517003FC87E /* loginAppTests */, 647 | 83CBBA001A601CBA00E9B192 /* Products */, 648 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 649 | 7E7D5181B09B40E7925D5627 /* Resources */, 650 | 07C5270020E372A400015DD8 /* Recovered References */, 651 | ); 652 | indentWidth = 2; 653 | sourceTree = ""; 654 | tabWidth = 2; 655 | usesTabs = 0; 656 | }; 657 | 83CBBA001A601CBA00E9B192 /* Products */ = { 658 | isa = PBXGroup; 659 | children = ( 660 | 13B07F961A680F5B00A75B9A /* loginApp.app */, 661 | 00E356EE1AD99517003FC87E /* loginAppTests.xctest */, 662 | 2D02E47B1E0B4A5D006451C7 /* loginApp-tvOS.app */, 663 | 2D02E4901E0B4A5D006451C7 /* loginApp-tvOSTests.xctest */, 664 | ); 665 | name = Products; 666 | sourceTree = ""; 667 | }; 668 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 669 | isa = PBXGroup; 670 | children = ( 671 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 672 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 673 | ); 674 | name = Products; 675 | sourceTree = ""; 676 | }; 677 | /* End PBXGroup section */ 678 | 679 | /* Begin PBXNativeTarget section */ 680 | 00E356ED1AD99517003FC87E /* loginAppTests */ = { 681 | isa = PBXNativeTarget; 682 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "loginAppTests" */; 683 | buildPhases = ( 684 | 00E356EA1AD99517003FC87E /* Sources */, 685 | 00E356EB1AD99517003FC87E /* Frameworks */, 686 | 00E356EC1AD99517003FC87E /* Resources */, 687 | ); 688 | buildRules = ( 689 | ); 690 | dependencies = ( 691 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 692 | ); 693 | name = loginAppTests; 694 | productName = loginAppTests; 695 | productReference = 00E356EE1AD99517003FC87E /* loginAppTests.xctest */; 696 | productType = "com.apple.product-type.bundle.unit-test"; 697 | }; 698 | 13B07F861A680F5B00A75B9A /* loginApp */ = { 699 | isa = PBXNativeTarget; 700 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "loginApp" */; 701 | buildPhases = ( 702 | 13B07F871A680F5B00A75B9A /* Sources */, 703 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 704 | 13B07F8E1A680F5B00A75B9A /* Resources */, 705 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 706 | ); 707 | buildRules = ( 708 | ); 709 | dependencies = ( 710 | ); 711 | name = loginApp; 712 | productName = "Hello World"; 713 | productReference = 13B07F961A680F5B00A75B9A /* loginApp.app */; 714 | productType = "com.apple.product-type.application"; 715 | }; 716 | 2D02E47A1E0B4A5D006451C7 /* loginApp-tvOS */ = { 717 | isa = PBXNativeTarget; 718 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "loginApp-tvOS" */; 719 | buildPhases = ( 720 | 2D02E4771E0B4A5D006451C7 /* Sources */, 721 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 722 | 2D02E4791E0B4A5D006451C7 /* Resources */, 723 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 724 | ); 725 | buildRules = ( 726 | ); 727 | dependencies = ( 728 | ); 729 | name = "loginApp-tvOS"; 730 | productName = "loginApp-tvOS"; 731 | productReference = 2D02E47B1E0B4A5D006451C7 /* loginApp-tvOS.app */; 732 | productType = "com.apple.product-type.application"; 733 | }; 734 | 2D02E48F1E0B4A5D006451C7 /* loginApp-tvOSTests */ = { 735 | isa = PBXNativeTarget; 736 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "loginApp-tvOSTests" */; 737 | buildPhases = ( 738 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 739 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 740 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 741 | ); 742 | buildRules = ( 743 | ); 744 | dependencies = ( 745 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 746 | ); 747 | name = "loginApp-tvOSTests"; 748 | productName = "loginApp-tvOSTests"; 749 | productReference = 2D02E4901E0B4A5D006451C7 /* loginApp-tvOSTests.xctest */; 750 | productType = "com.apple.product-type.bundle.unit-test"; 751 | }; 752 | /* End PBXNativeTarget section */ 753 | 754 | /* Begin PBXProject section */ 755 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 756 | isa = PBXProject; 757 | attributes = { 758 | LastUpgradeCheck = 610; 759 | ORGANIZATIONNAME = Facebook; 760 | TargetAttributes = { 761 | 00E356ED1AD99517003FC87E = { 762 | CreatedOnToolsVersion = 6.2; 763 | TestTargetID = 13B07F861A680F5B00A75B9A; 764 | }; 765 | 2D02E47A1E0B4A5D006451C7 = { 766 | CreatedOnToolsVersion = 8.2.1; 767 | ProvisioningStyle = Automatic; 768 | }; 769 | 2D02E48F1E0B4A5D006451C7 = { 770 | CreatedOnToolsVersion = 8.2.1; 771 | ProvisioningStyle = Automatic; 772 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 773 | }; 774 | }; 775 | }; 776 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "loginApp" */; 777 | compatibilityVersion = "Xcode 3.2"; 778 | developmentRegion = English; 779 | hasScannedForEncodings = 0; 780 | knownRegions = ( 781 | en, 782 | Base, 783 | ); 784 | mainGroup = 83CBB9F61A601CBA00E9B192; 785 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 786 | projectDirPath = ""; 787 | projectReferences = ( 788 | { 789 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 790 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 791 | }, 792 | { 793 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 794 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 795 | }, 796 | { 797 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 798 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 799 | }, 800 | { 801 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 802 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 803 | }, 804 | { 805 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 806 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 807 | }, 808 | { 809 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 810 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 811 | }, 812 | { 813 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 814 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 815 | }, 816 | { 817 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 818 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 819 | }, 820 | { 821 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 822 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 823 | }, 824 | { 825 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 826 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 827 | }, 828 | { 829 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 830 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 831 | }, 832 | { 833 | ProductGroup = 146834001AC3E56700842450 /* Products */; 834 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 835 | }, 836 | { 837 | ProductGroup = 07C5272620E372A500015DD8 /* Products */; 838 | ProjectRef = C022BFD168574143AA00F3E6 /* RNVectorIcons.xcodeproj */; 839 | }, 840 | ); 841 | projectRoot = ""; 842 | targets = ( 843 | 13B07F861A680F5B00A75B9A /* loginApp */, 844 | 00E356ED1AD99517003FC87E /* loginAppTests */, 845 | 2D02E47A1E0B4A5D006451C7 /* loginApp-tvOS */, 846 | 2D02E48F1E0B4A5D006451C7 /* loginApp-tvOSTests */, 847 | ); 848 | }; 849 | /* End PBXProject section */ 850 | 851 | /* Begin PBXReferenceProxy section */ 852 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 853 | isa = PBXReferenceProxy; 854 | fileType = archive.ar; 855 | path = libRCTActionSheet.a; 856 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 857 | sourceTree = BUILT_PRODUCTS_DIR; 858 | }; 859 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 860 | isa = PBXReferenceProxy; 861 | fileType = archive.ar; 862 | path = libRCTGeolocation.a; 863 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 864 | sourceTree = BUILT_PRODUCTS_DIR; 865 | }; 866 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 867 | isa = PBXReferenceProxy; 868 | fileType = archive.ar; 869 | path = libRCTImage.a; 870 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 871 | sourceTree = BUILT_PRODUCTS_DIR; 872 | }; 873 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 874 | isa = PBXReferenceProxy; 875 | fileType = archive.ar; 876 | path = libRCTNetwork.a; 877 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 878 | sourceTree = BUILT_PRODUCTS_DIR; 879 | }; 880 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 881 | isa = PBXReferenceProxy; 882 | fileType = archive.ar; 883 | path = libRCTVibration.a; 884 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 885 | sourceTree = BUILT_PRODUCTS_DIR; 886 | }; 887 | 07C5272A20E372A500015DD8 /* libRNVectorIcons.a */ = { 888 | isa = PBXReferenceProxy; 889 | fileType = archive.ar; 890 | path = libRNVectorIcons.a; 891 | remoteRef = 07C5272920E372A500015DD8 /* PBXContainerItemProxy */; 892 | sourceTree = BUILT_PRODUCTS_DIR; 893 | }; 894 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 895 | isa = PBXReferenceProxy; 896 | fileType = archive.ar; 897 | path = libRCTSettings.a; 898 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 899 | sourceTree = BUILT_PRODUCTS_DIR; 900 | }; 901 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 902 | isa = PBXReferenceProxy; 903 | fileType = archive.ar; 904 | path = libRCTWebSocket.a; 905 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 906 | sourceTree = BUILT_PRODUCTS_DIR; 907 | }; 908 | 146834041AC3E56700842450 /* libReact.a */ = { 909 | isa = PBXReferenceProxy; 910 | fileType = archive.ar; 911 | path = libReact.a; 912 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 913 | sourceTree = BUILT_PRODUCTS_DIR; 914 | }; 915 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 916 | isa = PBXReferenceProxy; 917 | fileType = archive.ar; 918 | path = "libRCTBlob-tvOS.a"; 919 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 920 | sourceTree = BUILT_PRODUCTS_DIR; 921 | }; 922 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 923 | isa = PBXReferenceProxy; 924 | fileType = archive.ar; 925 | path = libfishhook.a; 926 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 927 | sourceTree = BUILT_PRODUCTS_DIR; 928 | }; 929 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 930 | isa = PBXReferenceProxy; 931 | fileType = archive.ar; 932 | path = "libfishhook-tvOS.a"; 933 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 934 | sourceTree = BUILT_PRODUCTS_DIR; 935 | }; 936 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 937 | isa = PBXReferenceProxy; 938 | fileType = archive.ar; 939 | path = libjsinspector.a; 940 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 941 | sourceTree = BUILT_PRODUCTS_DIR; 942 | }; 943 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 944 | isa = PBXReferenceProxy; 945 | fileType = archive.ar; 946 | path = "libjsinspector-tvOS.a"; 947 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 948 | sourceTree = BUILT_PRODUCTS_DIR; 949 | }; 950 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 951 | isa = PBXReferenceProxy; 952 | fileType = archive.ar; 953 | path = "libthird-party.a"; 954 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 955 | sourceTree = BUILT_PRODUCTS_DIR; 956 | }; 957 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 958 | isa = PBXReferenceProxy; 959 | fileType = archive.ar; 960 | path = "libthird-party.a"; 961 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 962 | sourceTree = BUILT_PRODUCTS_DIR; 963 | }; 964 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 965 | isa = PBXReferenceProxy; 966 | fileType = archive.ar; 967 | path = "libdouble-conversion.a"; 968 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 969 | sourceTree = BUILT_PRODUCTS_DIR; 970 | }; 971 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 972 | isa = PBXReferenceProxy; 973 | fileType = archive.ar; 974 | path = "libdouble-conversion.a"; 975 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 976 | sourceTree = BUILT_PRODUCTS_DIR; 977 | }; 978 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 979 | isa = PBXReferenceProxy; 980 | fileType = archive.ar; 981 | path = libprivatedata.a; 982 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 983 | sourceTree = BUILT_PRODUCTS_DIR; 984 | }; 985 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 986 | isa = PBXReferenceProxy; 987 | fileType = archive.ar; 988 | path = "libprivatedata-tvOS.a"; 989 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 990 | sourceTree = BUILT_PRODUCTS_DIR; 991 | }; 992 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 993 | isa = PBXReferenceProxy; 994 | fileType = archive.ar; 995 | path = "libRCTImage-tvOS.a"; 996 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 997 | sourceTree = BUILT_PRODUCTS_DIR; 998 | }; 999 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1000 | isa = PBXReferenceProxy; 1001 | fileType = archive.ar; 1002 | path = "libRCTLinking-tvOS.a"; 1003 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1004 | sourceTree = BUILT_PRODUCTS_DIR; 1005 | }; 1006 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1007 | isa = PBXReferenceProxy; 1008 | fileType = archive.ar; 1009 | path = "libRCTNetwork-tvOS.a"; 1010 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1011 | sourceTree = BUILT_PRODUCTS_DIR; 1012 | }; 1013 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1014 | isa = PBXReferenceProxy; 1015 | fileType = archive.ar; 1016 | path = "libRCTSettings-tvOS.a"; 1017 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1018 | sourceTree = BUILT_PRODUCTS_DIR; 1019 | }; 1020 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1021 | isa = PBXReferenceProxy; 1022 | fileType = archive.ar; 1023 | path = "libRCTText-tvOS.a"; 1024 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1025 | sourceTree = BUILT_PRODUCTS_DIR; 1026 | }; 1027 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1028 | isa = PBXReferenceProxy; 1029 | fileType = archive.ar; 1030 | path = "libRCTWebSocket-tvOS.a"; 1031 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1032 | sourceTree = BUILT_PRODUCTS_DIR; 1033 | }; 1034 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1035 | isa = PBXReferenceProxy; 1036 | fileType = archive.ar; 1037 | path = libReact.a; 1038 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1039 | sourceTree = BUILT_PRODUCTS_DIR; 1040 | }; 1041 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1042 | isa = PBXReferenceProxy; 1043 | fileType = archive.ar; 1044 | path = libyoga.a; 1045 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1046 | sourceTree = BUILT_PRODUCTS_DIR; 1047 | }; 1048 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1049 | isa = PBXReferenceProxy; 1050 | fileType = archive.ar; 1051 | path = libyoga.a; 1052 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1053 | sourceTree = BUILT_PRODUCTS_DIR; 1054 | }; 1055 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1056 | isa = PBXReferenceProxy; 1057 | fileType = archive.ar; 1058 | path = libcxxreact.a; 1059 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1060 | sourceTree = BUILT_PRODUCTS_DIR; 1061 | }; 1062 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1063 | isa = PBXReferenceProxy; 1064 | fileType = archive.ar; 1065 | path = libcxxreact.a; 1066 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1067 | sourceTree = BUILT_PRODUCTS_DIR; 1068 | }; 1069 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1070 | isa = PBXReferenceProxy; 1071 | fileType = archive.ar; 1072 | path = libjschelpers.a; 1073 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1074 | sourceTree = BUILT_PRODUCTS_DIR; 1075 | }; 1076 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1077 | isa = PBXReferenceProxy; 1078 | fileType = archive.ar; 1079 | path = libjschelpers.a; 1080 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1081 | sourceTree = BUILT_PRODUCTS_DIR; 1082 | }; 1083 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1084 | isa = PBXReferenceProxy; 1085 | fileType = archive.ar; 1086 | path = libRCTAnimation.a; 1087 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1088 | sourceTree = BUILT_PRODUCTS_DIR; 1089 | }; 1090 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1091 | isa = PBXReferenceProxy; 1092 | fileType = archive.ar; 1093 | path = libRCTAnimation.a; 1094 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1095 | sourceTree = BUILT_PRODUCTS_DIR; 1096 | }; 1097 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1098 | isa = PBXReferenceProxy; 1099 | fileType = archive.ar; 1100 | path = libRCTLinking.a; 1101 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1102 | sourceTree = BUILT_PRODUCTS_DIR; 1103 | }; 1104 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1105 | isa = PBXReferenceProxy; 1106 | fileType = archive.ar; 1107 | path = libRCTText.a; 1108 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1109 | sourceTree = BUILT_PRODUCTS_DIR; 1110 | }; 1111 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1112 | isa = PBXReferenceProxy; 1113 | fileType = archive.ar; 1114 | path = libRCTBlob.a; 1115 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1116 | sourceTree = BUILT_PRODUCTS_DIR; 1117 | }; 1118 | /* End PBXReferenceProxy section */ 1119 | 1120 | /* Begin PBXResourcesBuildPhase section */ 1121 | 00E356EC1AD99517003FC87E /* Resources */ = { 1122 | isa = PBXResourcesBuildPhase; 1123 | buildActionMask = 2147483647; 1124 | files = ( 1125 | ); 1126 | runOnlyForDeploymentPostprocessing = 0; 1127 | }; 1128 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1129 | isa = PBXResourcesBuildPhase; 1130 | buildActionMask = 2147483647; 1131 | files = ( 1132 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1133 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1134 | 366633FA948C478C9EF54CC7 /* Entypo.ttf in Resources */, 1135 | E04075B1DC3B4E3DAC8D1FE8 /* EvilIcons.ttf in Resources */, 1136 | 8E3D719985B440B8B438A96D /* Feather.ttf in Resources */, 1137 | 6DF865F36C6145D884A5EB3D /* FontAwesome.ttf in Resources */, 1138 | 7C3878DE64074D8D9AA3C0EE /* Foundation.ttf in Resources */, 1139 | 491396B45531417FB99B22F5 /* Ionicons.ttf in Resources */, 1140 | 3C4A856A25674FCE93E0D007 /* MaterialCommunityIcons.ttf in Resources */, 1141 | 2E4BD0661A21422482E272C6 /* MaterialIcons.ttf in Resources */, 1142 | 75A408B0206C49668FE785CD /* Octicons.ttf in Resources */, 1143 | 44C2F9AE1985479E970E80B0 /* SimpleLineIcons.ttf in Resources */, 1144 | DA22BB95520848DC8F97DB22 /* Zocial.ttf in Resources */, 1145 | ); 1146 | runOnlyForDeploymentPostprocessing = 0; 1147 | }; 1148 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1149 | isa = PBXResourcesBuildPhase; 1150 | buildActionMask = 2147483647; 1151 | files = ( 1152 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1153 | ); 1154 | runOnlyForDeploymentPostprocessing = 0; 1155 | }; 1156 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1157 | isa = PBXResourcesBuildPhase; 1158 | buildActionMask = 2147483647; 1159 | files = ( 1160 | ); 1161 | runOnlyForDeploymentPostprocessing = 0; 1162 | }; 1163 | /* End PBXResourcesBuildPhase section */ 1164 | 1165 | /* Begin PBXShellScriptBuildPhase section */ 1166 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1167 | isa = PBXShellScriptBuildPhase; 1168 | buildActionMask = 2147483647; 1169 | files = ( 1170 | ); 1171 | inputPaths = ( 1172 | ); 1173 | name = "Bundle React Native code and images"; 1174 | outputPaths = ( 1175 | ); 1176 | runOnlyForDeploymentPostprocessing = 0; 1177 | shellPath = /bin/sh; 1178 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1179 | }; 1180 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1181 | isa = PBXShellScriptBuildPhase; 1182 | buildActionMask = 2147483647; 1183 | files = ( 1184 | ); 1185 | inputPaths = ( 1186 | ); 1187 | name = "Bundle React Native Code And Images"; 1188 | outputPaths = ( 1189 | ); 1190 | runOnlyForDeploymentPostprocessing = 0; 1191 | shellPath = /bin/sh; 1192 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1193 | }; 1194 | /* End PBXShellScriptBuildPhase section */ 1195 | 1196 | /* Begin PBXSourcesBuildPhase section */ 1197 | 00E356EA1AD99517003FC87E /* Sources */ = { 1198 | isa = PBXSourcesBuildPhase; 1199 | buildActionMask = 2147483647; 1200 | files = ( 1201 | 00E356F31AD99517003FC87E /* loginAppTests.m in Sources */, 1202 | ); 1203 | runOnlyForDeploymentPostprocessing = 0; 1204 | }; 1205 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1206 | isa = PBXSourcesBuildPhase; 1207 | buildActionMask = 2147483647; 1208 | files = ( 1209 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1210 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1211 | ); 1212 | runOnlyForDeploymentPostprocessing = 0; 1213 | }; 1214 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1215 | isa = PBXSourcesBuildPhase; 1216 | buildActionMask = 2147483647; 1217 | files = ( 1218 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1219 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1220 | ); 1221 | runOnlyForDeploymentPostprocessing = 0; 1222 | }; 1223 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1224 | isa = PBXSourcesBuildPhase; 1225 | buildActionMask = 2147483647; 1226 | files = ( 1227 | 2DCD954D1E0B4F2C00145EB5 /* loginAppTests.m in Sources */, 1228 | ); 1229 | runOnlyForDeploymentPostprocessing = 0; 1230 | }; 1231 | /* End PBXSourcesBuildPhase section */ 1232 | 1233 | /* Begin PBXTargetDependency section */ 1234 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1235 | isa = PBXTargetDependency; 1236 | target = 13B07F861A680F5B00A75B9A /* loginApp */; 1237 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1238 | }; 1239 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1240 | isa = PBXTargetDependency; 1241 | target = 2D02E47A1E0B4A5D006451C7 /* loginApp-tvOS */; 1242 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1243 | }; 1244 | /* End PBXTargetDependency section */ 1245 | 1246 | /* Begin PBXVariantGroup section */ 1247 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1248 | isa = PBXVariantGroup; 1249 | children = ( 1250 | 13B07FB21A68108700A75B9A /* Base */, 1251 | ); 1252 | name = LaunchScreen.xib; 1253 | path = loginApp; 1254 | sourceTree = ""; 1255 | }; 1256 | /* End PBXVariantGroup section */ 1257 | 1258 | /* Begin XCBuildConfiguration section */ 1259 | 00E356F61AD99517003FC87E /* Debug */ = { 1260 | isa = XCBuildConfiguration; 1261 | buildSettings = { 1262 | BUNDLE_LOADER = "$(TEST_HOST)"; 1263 | GCC_PREPROCESSOR_DEFINITIONS = ( 1264 | "DEBUG=1", 1265 | "$(inherited)", 1266 | ); 1267 | HEADER_SEARCH_PATHS = ( 1268 | "$(inherited)", 1269 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1270 | ); 1271 | INFOPLIST_FILE = loginAppTests/Info.plist; 1272 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1273 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1274 | LIBRARY_SEARCH_PATHS = ( 1275 | "$(inherited)", 1276 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1277 | ); 1278 | OTHER_LDFLAGS = ( 1279 | "-ObjC", 1280 | "-lc++", 1281 | ); 1282 | PRODUCT_NAME = "$(TARGET_NAME)"; 1283 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/loginApp.app/loginApp"; 1284 | }; 1285 | name = Debug; 1286 | }; 1287 | 00E356F71AD99517003FC87E /* Release */ = { 1288 | isa = XCBuildConfiguration; 1289 | buildSettings = { 1290 | BUNDLE_LOADER = "$(TEST_HOST)"; 1291 | COPY_PHASE_STRIP = NO; 1292 | HEADER_SEARCH_PATHS = ( 1293 | "$(inherited)", 1294 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1295 | ); 1296 | INFOPLIST_FILE = loginAppTests/Info.plist; 1297 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1298 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1299 | LIBRARY_SEARCH_PATHS = ( 1300 | "$(inherited)", 1301 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1302 | ); 1303 | OTHER_LDFLAGS = ( 1304 | "-ObjC", 1305 | "-lc++", 1306 | ); 1307 | PRODUCT_NAME = "$(TARGET_NAME)"; 1308 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/loginApp.app/loginApp"; 1309 | }; 1310 | name = Release; 1311 | }; 1312 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1313 | isa = XCBuildConfiguration; 1314 | buildSettings = { 1315 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1316 | CURRENT_PROJECT_VERSION = 1; 1317 | DEAD_CODE_STRIPPING = NO; 1318 | HEADER_SEARCH_PATHS = ( 1319 | "$(inherited)", 1320 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1321 | ); 1322 | INFOPLIST_FILE = loginApp/Info.plist; 1323 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1324 | OTHER_LDFLAGS = ( 1325 | "$(inherited)", 1326 | "-ObjC", 1327 | "-lc++", 1328 | ); 1329 | PRODUCT_NAME = loginApp; 1330 | VERSIONING_SYSTEM = "apple-generic"; 1331 | }; 1332 | name = Debug; 1333 | }; 1334 | 13B07F951A680F5B00A75B9A /* Release */ = { 1335 | isa = XCBuildConfiguration; 1336 | buildSettings = { 1337 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1338 | CURRENT_PROJECT_VERSION = 1; 1339 | HEADER_SEARCH_PATHS = ( 1340 | "$(inherited)", 1341 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1342 | ); 1343 | INFOPLIST_FILE = loginApp/Info.plist; 1344 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1345 | OTHER_LDFLAGS = ( 1346 | "$(inherited)", 1347 | "-ObjC", 1348 | "-lc++", 1349 | ); 1350 | PRODUCT_NAME = loginApp; 1351 | VERSIONING_SYSTEM = "apple-generic"; 1352 | }; 1353 | name = Release; 1354 | }; 1355 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1356 | isa = XCBuildConfiguration; 1357 | buildSettings = { 1358 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1359 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1360 | CLANG_ANALYZER_NONNULL = YES; 1361 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1362 | CLANG_WARN_INFINITE_RECURSION = YES; 1363 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1364 | DEBUG_INFORMATION_FORMAT = dwarf; 1365 | ENABLE_TESTABILITY = YES; 1366 | GCC_NO_COMMON_BLOCKS = YES; 1367 | HEADER_SEARCH_PATHS = ( 1368 | "$(inherited)", 1369 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1370 | ); 1371 | INFOPLIST_FILE = "loginApp-tvOS/Info.plist"; 1372 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1373 | LIBRARY_SEARCH_PATHS = ( 1374 | "$(inherited)", 1375 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1376 | ); 1377 | OTHER_LDFLAGS = ( 1378 | "-ObjC", 1379 | "-lc++", 1380 | ); 1381 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.loginApp-tvOS"; 1382 | PRODUCT_NAME = "$(TARGET_NAME)"; 1383 | SDKROOT = appletvos; 1384 | TARGETED_DEVICE_FAMILY = 3; 1385 | TVOS_DEPLOYMENT_TARGET = 9.2; 1386 | }; 1387 | name = Debug; 1388 | }; 1389 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1390 | isa = XCBuildConfiguration; 1391 | buildSettings = { 1392 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1393 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1394 | CLANG_ANALYZER_NONNULL = YES; 1395 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1396 | CLANG_WARN_INFINITE_RECURSION = YES; 1397 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1398 | COPY_PHASE_STRIP = NO; 1399 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1400 | GCC_NO_COMMON_BLOCKS = YES; 1401 | HEADER_SEARCH_PATHS = ( 1402 | "$(inherited)", 1403 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1404 | ); 1405 | INFOPLIST_FILE = "loginApp-tvOS/Info.plist"; 1406 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1407 | LIBRARY_SEARCH_PATHS = ( 1408 | "$(inherited)", 1409 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1410 | ); 1411 | OTHER_LDFLAGS = ( 1412 | "-ObjC", 1413 | "-lc++", 1414 | ); 1415 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.loginApp-tvOS"; 1416 | PRODUCT_NAME = "$(TARGET_NAME)"; 1417 | SDKROOT = appletvos; 1418 | TARGETED_DEVICE_FAMILY = 3; 1419 | TVOS_DEPLOYMENT_TARGET = 9.2; 1420 | }; 1421 | name = Release; 1422 | }; 1423 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1424 | isa = XCBuildConfiguration; 1425 | buildSettings = { 1426 | BUNDLE_LOADER = "$(TEST_HOST)"; 1427 | CLANG_ANALYZER_NONNULL = YES; 1428 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1429 | CLANG_WARN_INFINITE_RECURSION = YES; 1430 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1431 | DEBUG_INFORMATION_FORMAT = dwarf; 1432 | ENABLE_TESTABILITY = YES; 1433 | GCC_NO_COMMON_BLOCKS = YES; 1434 | HEADER_SEARCH_PATHS = ( 1435 | "$(inherited)", 1436 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1437 | ); 1438 | INFOPLIST_FILE = "loginApp-tvOSTests/Info.plist"; 1439 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1440 | LIBRARY_SEARCH_PATHS = ( 1441 | "$(inherited)", 1442 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1443 | ); 1444 | OTHER_LDFLAGS = ( 1445 | "-ObjC", 1446 | "-lc++", 1447 | ); 1448 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.loginApp-tvOSTests"; 1449 | PRODUCT_NAME = "$(TARGET_NAME)"; 1450 | SDKROOT = appletvos; 1451 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/loginApp-tvOS.app/loginApp-tvOS"; 1452 | TVOS_DEPLOYMENT_TARGET = 10.1; 1453 | }; 1454 | name = Debug; 1455 | }; 1456 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1457 | isa = XCBuildConfiguration; 1458 | buildSettings = { 1459 | BUNDLE_LOADER = "$(TEST_HOST)"; 1460 | CLANG_ANALYZER_NONNULL = YES; 1461 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1462 | CLANG_WARN_INFINITE_RECURSION = YES; 1463 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1464 | COPY_PHASE_STRIP = NO; 1465 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1466 | GCC_NO_COMMON_BLOCKS = YES; 1467 | HEADER_SEARCH_PATHS = ( 1468 | "$(inherited)", 1469 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1470 | ); 1471 | INFOPLIST_FILE = "loginApp-tvOSTests/Info.plist"; 1472 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1473 | LIBRARY_SEARCH_PATHS = ( 1474 | "$(inherited)", 1475 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1476 | ); 1477 | OTHER_LDFLAGS = ( 1478 | "-ObjC", 1479 | "-lc++", 1480 | ); 1481 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.loginApp-tvOSTests"; 1482 | PRODUCT_NAME = "$(TARGET_NAME)"; 1483 | SDKROOT = appletvos; 1484 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/loginApp-tvOS.app/loginApp-tvOS"; 1485 | TVOS_DEPLOYMENT_TARGET = 10.1; 1486 | }; 1487 | name = Release; 1488 | }; 1489 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1490 | isa = XCBuildConfiguration; 1491 | buildSettings = { 1492 | ALWAYS_SEARCH_USER_PATHS = NO; 1493 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1494 | CLANG_CXX_LIBRARY = "libc++"; 1495 | CLANG_ENABLE_MODULES = YES; 1496 | CLANG_ENABLE_OBJC_ARC = YES; 1497 | CLANG_WARN_BOOL_CONVERSION = YES; 1498 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1499 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1500 | CLANG_WARN_EMPTY_BODY = YES; 1501 | CLANG_WARN_ENUM_CONVERSION = YES; 1502 | CLANG_WARN_INT_CONVERSION = YES; 1503 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1504 | CLANG_WARN_UNREACHABLE_CODE = YES; 1505 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1506 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1507 | COPY_PHASE_STRIP = NO; 1508 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1509 | GCC_C_LANGUAGE_STANDARD = gnu99; 1510 | GCC_DYNAMIC_NO_PIC = NO; 1511 | GCC_OPTIMIZATION_LEVEL = 0; 1512 | GCC_PREPROCESSOR_DEFINITIONS = ( 1513 | "DEBUG=1", 1514 | "$(inherited)", 1515 | ); 1516 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1517 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1518 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1519 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1520 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1521 | GCC_WARN_UNUSED_FUNCTION = YES; 1522 | GCC_WARN_UNUSED_VARIABLE = YES; 1523 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1524 | MTL_ENABLE_DEBUG_INFO = YES; 1525 | ONLY_ACTIVE_ARCH = YES; 1526 | SDKROOT = iphoneos; 1527 | }; 1528 | name = Debug; 1529 | }; 1530 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1531 | isa = XCBuildConfiguration; 1532 | buildSettings = { 1533 | ALWAYS_SEARCH_USER_PATHS = NO; 1534 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1535 | CLANG_CXX_LIBRARY = "libc++"; 1536 | CLANG_ENABLE_MODULES = YES; 1537 | CLANG_ENABLE_OBJC_ARC = YES; 1538 | CLANG_WARN_BOOL_CONVERSION = YES; 1539 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1540 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1541 | CLANG_WARN_EMPTY_BODY = YES; 1542 | CLANG_WARN_ENUM_CONVERSION = YES; 1543 | CLANG_WARN_INT_CONVERSION = YES; 1544 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1545 | CLANG_WARN_UNREACHABLE_CODE = YES; 1546 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1547 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1548 | COPY_PHASE_STRIP = YES; 1549 | ENABLE_NS_ASSERTIONS = NO; 1550 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1551 | GCC_C_LANGUAGE_STANDARD = gnu99; 1552 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1553 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1554 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1555 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1556 | GCC_WARN_UNUSED_FUNCTION = YES; 1557 | GCC_WARN_UNUSED_VARIABLE = YES; 1558 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1559 | MTL_ENABLE_DEBUG_INFO = NO; 1560 | SDKROOT = iphoneos; 1561 | VALIDATE_PRODUCT = YES; 1562 | }; 1563 | name = Release; 1564 | }; 1565 | /* End XCBuildConfiguration section */ 1566 | 1567 | /* Begin XCConfigurationList section */ 1568 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "loginAppTests" */ = { 1569 | isa = XCConfigurationList; 1570 | buildConfigurations = ( 1571 | 00E356F61AD99517003FC87E /* Debug */, 1572 | 00E356F71AD99517003FC87E /* Release */, 1573 | ); 1574 | defaultConfigurationIsVisible = 0; 1575 | defaultConfigurationName = Release; 1576 | }; 1577 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "loginApp" */ = { 1578 | isa = XCConfigurationList; 1579 | buildConfigurations = ( 1580 | 13B07F941A680F5B00A75B9A /* Debug */, 1581 | 13B07F951A680F5B00A75B9A /* Release */, 1582 | ); 1583 | defaultConfigurationIsVisible = 0; 1584 | defaultConfigurationName = Release; 1585 | }; 1586 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "loginApp-tvOS" */ = { 1587 | isa = XCConfigurationList; 1588 | buildConfigurations = ( 1589 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1590 | 2D02E4981E0B4A5E006451C7 /* Release */, 1591 | ); 1592 | defaultConfigurationIsVisible = 0; 1593 | defaultConfigurationName = Release; 1594 | }; 1595 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "loginApp-tvOSTests" */ = { 1596 | isa = XCConfigurationList; 1597 | buildConfigurations = ( 1598 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1599 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1600 | ); 1601 | defaultConfigurationIsVisible = 0; 1602 | defaultConfigurationName = Release; 1603 | }; 1604 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "loginApp" */ = { 1605 | isa = XCConfigurationList; 1606 | buildConfigurations = ( 1607 | 83CBBA201A601CBA00E9B192 /* Debug */, 1608 | 83CBBA211A601CBA00E9B192 /* Release */, 1609 | ); 1610 | defaultConfigurationIsVisible = 0; 1611 | defaultConfigurationName = Release; 1612 | }; 1613 | /* End XCConfigurationList section */ 1614 | }; 1615 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1616 | } 1617 | -------------------------------------------------------------------------------- /ios/loginApp.xcodeproj/xcshareddata/xcschemes/loginApp-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/loginApp.xcodeproj/xcshareddata/xcschemes/loginApp.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/loginApp/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/loginApp/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"loginApp" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /ios/loginApp/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/loginApp/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/loginApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/loginApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | loginApp 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | Feather.ttf 59 | FontAwesome.ttf 60 | Foundation.ttf 61 | Ionicons.ttf 62 | MaterialCommunityIcons.ttf 63 | MaterialIcons.ttf 64 | Octicons.ttf 65 | SimpleLineIcons.ttf 66 | Zocial.ttf 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /ios/loginApp/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/loginAppTests/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/loginAppTests/loginAppTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface loginAppTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation loginAppTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "loginApp", 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": "^2.6.1", 11 | "react": "16.3.1", 12 | "react-native": "0.55.4", 13 | "vue-native-core": "0.0.7", 14 | "vue-native-helper": "0.0.8", 15 | "vue-native-router": "0.0.1-alpha.3", 16 | "vuelidate": "^0.7.4", 17 | "vuex": "^3.0.1" 18 | }, 19 | "devDependencies": { 20 | "babel-jest": "23.2.0", 21 | "babel-preset-react-native": "4.0.0", 22 | "jest": "23.2.0", 23 | "react-test-renderer": "16.3.1", 24 | "vue-native-scripts": "0.0.10" 25 | }, 26 | "jest": { 27 | "preset": "react-native" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /rn-cli.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | getTransformModulePath() { 3 | return require.resolve("./vueTransformerPlugin.js"); 4 | }, 5 | getSourceExts() { 6 | return ["vue"]; 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /src/components/item.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 22 | 23 | -------------------------------------------------------------------------------- /src/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/screen/home.vue: -------------------------------------------------------------------------------- 1 | 28 | 29 | -------------------------------------------------------------------------------- /src/screen/login.vue: -------------------------------------------------------------------------------- 1 | 29 | 30 | -------------------------------------------------------------------------------- /src/screen/sidebar.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | -------------------------------------------------------------------------------- /src/setup.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 22 | 23 | -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- 1 | import { fetchPosts } from './fetch'; 2 | import { AsyncStorage } from 'react-native'; 3 | 4 | // ensure data for rendering given list type 5 | export function FETCH_LIST_DATA ({ commit, dispatch }, { type }) { 6 | commit('FETCHING_LISTS'); 7 | return fetchPosts(type) 8 | .then(posts => { 9 | return commit('SET_POSTS', { posts }) 10 | }); 11 | } 12 | 13 | export function LOGIN ({ commit, state}, {userObj, navigate}) { 14 | commit('LOGGING_IN', true) 15 | return new Promise((resolve, reject) => { 16 | setTimeout(() => { 17 | commit('LOGIN_SUCCESFULL', {userObj}) 18 | AsyncStorage.setItem('email', userObj.email) 19 | navigate('Home'); 20 | resolve(); 21 | }, 1000) 22 | }) 23 | } 24 | 25 | export function SET_USER({commit, state}, {userObj}) { 26 | return commit('LOGIN_SUCCESFULL', {userObj}) 27 | } 28 | 29 | export function LOGOUT ({ commit, state}, callback) { 30 | return new Promise((resolve, reject) => { 31 | AsyncStorage.removeItem('email').then(() => { 32 | callback(); 33 | resolve(); 34 | }) 35 | }) 36 | } -------------------------------------------------------------------------------- /src/store/fetch.js: -------------------------------------------------------------------------------- 1 | const baseURL = 'https://jsonplaceholder.typicode.com'; 2 | 3 | export function _fetch (path) { 4 | return fetch({ 5 | method: 'GET', 6 | url: `${baseURL}/${path}` 7 | }) 8 | .then((response) => response.json()); 9 | } 10 | 11 | export function fetchPosts (type) { 12 | return _fetch(`${type}`); 13 | } 14 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * reference 3 | * https://github.com/weexteam/weex-hackernews/tree/master/src/store 4 | */ 5 | 6 | import Vue from 'vue-native-core'; 7 | import Vuex from 'vuex'; 8 | import * as actions from './actions'; 9 | import * as mutations from './mutations'; 10 | 11 | Vue.use(Vuex); 12 | 13 | const store = new Vuex.Store({ 14 | actions, 15 | mutations, 16 | 17 | state: { 18 | activeType: 'posts', 19 | posts: [], 20 | logging_in: false, 21 | userObj: {}, 22 | loadingPosts: false 23 | } 24 | }); 25 | 26 | export default store; 27 | -------------------------------------------------------------------------------- /src/store/mutations.js: -------------------------------------------------------------------------------- 1 | export function SET_POSTS (state, { posts}) { 2 | state.loadingPosts = false; 3 | state.posts = posts; 4 | } 5 | 6 | export function FETCHING_LISTS (state) { 7 | state.loadingPosts = true; 8 | } 9 | 10 | export function LOGGING_IN (state, status) { 11 | state.logging_in = status; 12 | } 13 | 14 | export function LOGIN_SUCCESFULL (state, {userObj}) { 15 | state.userObj = userObj; 16 | state.logging_in = false; 17 | } -------------------------------------------------------------------------------- /vueTransformerPlugin.js: -------------------------------------------------------------------------------- 1 | // For React Native version 0.52 or later 2 | var upstreamTransformer = require("metro/src/transformer"); 3 | 4 | // For React Native version 0.47-0.51 5 | // var upstreamTransformer = require("metro-bundler/src/transformer"); 6 | 7 | // For React Native version 0.46 8 | // var upstreamTransformer = require("metro-bundler/build/transformer"); 9 | 10 | var vueNaiveScripts = require("vue-native-scripts"); 11 | var vueExtensions = ["vue"]; // <-- Add other extensions if needed. 12 | 13 | module.exports.transform = function({ src, filename, options }) { 14 | if (vueExtensions.some(ext => filename.endsWith("." + ext))) { 15 | return vueNaiveScripts.transform({ src, filename, options }); 16 | } 17 | return upstreamTransformer.transform({ src, filename, options }); 18 | }; 19 | --------------------------------------------------------------------------------