├── .watchmanconfig
├── .gitattributes
├── utils
├── store.ts
├── config.ts
├── interface.ts
└── fetch.ts
├── app.json
├── .babelrc
├── assets
├── id-card.png
└── fingerprint-scanning.png
├── android
├── app
│ ├── src
│ │ └── main
│ │ │ ├── res
│ │ │ ├── values
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ ├── mipmap-hdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-mdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ └── mipmap-xxxhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── assets
│ │ │ └── fonts
│ │ │ │ ├── Entypo.ttf
│ │ │ │ ├── Zocial.ttf
│ │ │ │ ├── AntDesign.ttf
│ │ │ │ ├── EvilIcons.ttf
│ │ │ │ ├── Feather.ttf
│ │ │ │ ├── Ionicons.ttf
│ │ │ │ ├── Octicons.ttf
│ │ │ │ ├── FontAwesome.ttf
│ │ │ │ ├── Foundation.ttf
│ │ │ │ ├── MaterialIcons.ttf
│ │ │ │ ├── SimpleLineIcons.ttf
│ │ │ │ ├── FontAwesome5_Brands.ttf
│ │ │ │ ├── FontAwesome5_Solid.ttf
│ │ │ │ ├── FontAwesome5_Regular.ttf
│ │ │ │ └── MaterialCommunityIcons.ttf
│ │ │ ├── java
│ │ │ └── com
│ │ │ │ └── validator
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── MainApplication.java
│ │ │ └── AndroidManifest.xml
│ ├── proguard-rules.pro
│ ├── BUCK
│ └── build.gradle
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── keystores
│ ├── debug.keystore.properties
│ └── BUCK
├── gradle.properties
├── settings.gradle
├── build.gradle
├── gradlew.bat
└── gradlew
├── ios
├── Validator
│ ├── Images.xcassets
│ │ ├── Contents.json
│ │ ├── AppIcon.appiconset
│ │ │ ├── app-icon@20x3.png
│ │ │ ├── app-icon@29x2.png
│ │ │ ├── app-icon@29x3.png
│ │ │ ├── app-icon@40x1.png
│ │ │ ├── app-icon@40x2.png
│ │ │ ├── app-icon@40x3.png
│ │ │ ├── app-icon@60x3.png
│ │ │ ├── app-icon@1024x1.png
│ │ │ ├── app-icon@40x3-1.png
│ │ │ ├── app-icon-iTunesArtwork.png
│ │ │ └── Contents.json
│ │ ├── app-icon@40x3.imageset
│ │ │ ├── app-icon@40x3.png
│ │ │ └── Contents.json
│ │ └── app-icon-iTunesArtwork-1.imageset
│ │ │ └── Contents.json
│ ├── AppDelegate.h
│ ├── main.m
│ ├── AppDelegate.m
│ ├── Info.plist
│ └── Base.lproj
│ │ └── LaunchScreen.xib
├── ValidatorTests
│ ├── Info.plist
│ └── ValidatorTests.m
├── Validator-tvOSTests
│ └── Info.plist
├── Validator-tvOS
│ └── Info.plist
└── Validator.xcodeproj
│ ├── xcshareddata
│ └── xcschemes
│ │ ├── Validator.xcscheme
│ │ └── Validator-tvOS.xcscheme
│ └── project.pbxproj
├── theme.ts
├── .buckconfig
├── index.js
├── rn-cli.config.js
├── tsconfig.json
├── screens
├── ConfirmStack
│ ├── ConfirmSuccess
│ │ └── index.tsx
│ └── InputInfo
│ │ └── index.tsx
├── MainStack
│ ├── AuthLoading
│ │ └── index.tsx
│ └── Home
│ │ ├── Record
│ │ └── index.tsx
│ │ ├── Auth
│ │ └── index.tsx
│ │ ├── QRcode
│ │ └── index.tsx
│ │ └── index.tsx
└── AuthStack
│ ├── SignIn
│ └── index.tsx
│ └── SignUp
│ └── index.tsx
├── components
├── Form
│ └── Form.tsx
├── Container.tsx
├── Title.tsx
└── MyImagePicker.tsx
├── .gitignore
├── package.json
├── App.tsx
└── .flowconfig
/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/utils/store.ts:
--------------------------------------------------------------------------------
1 | export const state = {
2 | user: null,
3 | };
4 |
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Validator",
3 | "displayName": "铁旅ID"
4 | }
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["module:metro-react-native-babel-preset"]
3 | }
4 |
--------------------------------------------------------------------------------
/assets/id-card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/assets/id-card.png
--------------------------------------------------------------------------------
/utils/config.ts:
--------------------------------------------------------------------------------
1 | export const TOKEN_LABEL = 'token';
2 | export const PRIVATE_KEY_LABEL = 'privateKey'
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Validator
3 |
4 |
--------------------------------------------------------------------------------
/assets/fingerprint-scanning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/assets/fingerprint-scanning.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/theme.ts:
--------------------------------------------------------------------------------
1 | export const color = {
2 | primary: '#FF8C8A',
3 | info:'#c0c4cc'
4 | };
5 |
6 | export const fontFamily = 'Verdana';
7 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Entypo.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/Entypo.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Zocial.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/Zocial.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/AntDesign.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/EvilIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Feather.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/Feather.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Octicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/Octicons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Foundation.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/Foundation.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/MaterialIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/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/app/src/main/assets/fonts/SimpleLineIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@20x3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@20x3.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@29x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@29x2.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@29x3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@29x3.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x1.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x2.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x3.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@60x3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@60x3.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@1024x1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@1024x1.png
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x3-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon@40x3-1.png
--------------------------------------------------------------------------------
/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/app-icon@40x3.imageset/app-icon@40x3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/app-icon@40x3.imageset/app-icon@40x3.png
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | /** @format */
2 |
3 | import {AppRegistry} from 'react-native';
4 | import App from './App';
5 | import {name as appName} from './app.json';
6 |
7 | AppRegistry.registerComponent(appName, () => App);
8 |
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon-iTunesArtwork.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/myWsq/validator-react-native/HEAD/ios/Validator/Images.xcassets/AppIcon.appiconset/app-icon-iTunesArtwork.png
--------------------------------------------------------------------------------
/rn-cli.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | getTransformModulePath() {
3 | return require.resolve('react-native-typescript-transformer');
4 | },
5 | getSourceExts() {
6 | return [
7 | 'ts',
8 | 'tsx',
9 | ];
10 | },
11 | };
12 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6 |
--------------------------------------------------------------------------------
/utils/interface.ts:
--------------------------------------------------------------------------------
1 | export enum ResponseCode {
2 | SUCCESS = 0,
3 | USERNAME_EXIST = 1,
4 | USERNAME_NOT_EXIST = 2,
5 | INVALID_PASSWORD = 3,
6 | }
7 |
8 | export interface Response {
9 | code: ResponseCode;
10 | data?: any;
11 | message?: any;
12 | }
13 |
14 |
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/app-icon@40x3.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "app-icon@40x3.png"
6 | }
7 | ],
8 | "info" : {
9 | "version" : 1,
10 | "author" : "xcode"
11 | }
12 | }
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es2015",
4 | "jsx": "react",
5 | "noEmit": true,
6 | "moduleResolution": "node",
7 | "importHelpers": true,
8 | "allowSyntheticDefaultImports": true
9 | },
10 | "exclude": [
11 | "node_modules",
12 | ]
13 | }
--------------------------------------------------------------------------------
/ios/Validator/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/Validator/Images.xcassets/app-icon-iTunesArtwork-1.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "scale" : "1x"
6 | },
7 | {
8 | "idiom" : "universal",
9 | "scale" : "2x"
10 | },
11 | {
12 | "idiom" : "universal",
13 | "scale" : "3x"
14 | }
15 | ],
16 | "info" : {
17 | "version" : 1,
18 | "author" : "xcode"
19 | }
20 | }
--------------------------------------------------------------------------------
/ios/Validator/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 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/validator/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.validator;
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 "Validator";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/screens/ConfirmStack/ConfirmSuccess/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import Container from '../../../components/Container';
3 |
4 | export interface ConfirmSuccessProps {
5 | }
6 |
7 | export interface ConfirmSuccessState {
8 | }
9 |
10 | export default class ConfirmSuccess extends React.Component {
11 | constructor(props: ConfirmSuccessProps) {
12 | super(props);
13 |
14 | this.state = {
15 | }
16 | }
17 |
18 | public render() {
19 | return (
20 |
21 |
22 |
23 | );
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/components/Form/Form.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { SafeAreaView } from 'react-native';
3 |
4 | export interface FormProps {}
5 |
6 | export interface FormState {}
7 |
8 | export default class Form extends React.Component {
9 | constructor(props: FormProps) {
10 | super(props);
11 |
12 | this.state = {};
13 | }
14 |
15 | public render() {
16 | return
17 | {this.props.children}
18 |
19 | }
20 | }
21 |
22 | const style = {
23 | container: {
24 | marginLeft: -20,
25 | marginRight: -20,
26 | },
27 | };
28 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/components/Container.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { SafeAreaView, StyleProp, ViewStyle } from 'react-native';
3 |
4 | export interface ContainerProps {
5 | style?: StyleProp;
6 | }
7 |
8 | export interface ContainerState {}
9 |
10 | export default class Container extends React.Component {
11 | constructor(props: ContainerProps) {
12 | super(props);
13 |
14 | this.state = {};
15 | }
16 | public render() {
17 | return (
18 |
19 | {this.props.children}
20 |
21 | );
22 | }
23 | }
24 |
25 | const styles = {
26 | container: {
27 | marginLeft: 20,
28 | marginRight: 20,
29 | },
30 | };
31 |
--------------------------------------------------------------------------------
/ios/ValidatorTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ios/Validator-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 |
--------------------------------------------------------------------------------
/components/Title.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { View } from 'react-native';
3 | import { Text } from 'react-native-elements';
4 | import { fontFamily, color } from '../theme';
5 |
6 | export interface TitleProps {}
7 |
8 | export interface TitleState {}
9 |
10 | export default class Title extends React.Component {
11 | constructor(props: TitleProps) {
12 | super(props);
13 |
14 | this.state = {};
15 | }
16 |
17 | public render() {
18 | return (
19 |
20 | {this.props.children}
21 |
22 |
23 | );
24 | }
25 | }
26 |
27 | const styles = {
28 | title: {
29 | fontFamily: fontFamily,
30 | fontSize: 30,
31 | marginTop: 50,
32 | },
33 | line: {
34 | height: 3,
35 | width: 40,
36 | marginTop: 10,
37 | marginBottom: 20,
38 | backgroundColor: color.primary,
39 | },
40 | };
41 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'Validator'
2 | include ':react-native-rsa-native'
3 | project(':react-native-rsa-native').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-rsa-native/android')
4 | include ':react-native-touch-id'
5 | project(':react-native-touch-id').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-touch-id/android')
6 | include ':react-native-spinkit'
7 | project(':react-native-spinkit').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-spinkit/android')
8 | include ':react-native-image-picker'
9 | project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android')
10 | include ':react-native-gesture-handler'
11 | project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android')
12 | include ':react-native-vector-icons'
13 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
14 |
15 | include ':app'
16 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext {
5 | buildToolsVersion = "27.0.3"
6 | minSdkVersion = 16
7 | compileSdkVersion = 27
8 | targetSdkVersion = 26
9 | supportLibVersion = "27.1.1"
10 | }
11 | repositories {
12 | google()
13 | jcenter()
14 | }
15 | dependencies {
16 | classpath 'com.android.tools.build:gradle:3.1.4'
17 |
18 | // NOTE: Do not place your application dependencies here; they belong
19 | // in the individual module build.gradle files
20 | }
21 | }
22 |
23 | allprojects {
24 | repositories {
25 | // Add jitpack repository (added by react-native-spinkit)
26 | maven { url "https://jitpack.io" }
27 | mavenLocal()
28 | google()
29 | jcenter()
30 | maven {
31 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
32 | url "$rootDir/../node_modules/react-native/android"
33 | }
34 | }
35 | }
36 |
37 |
38 | task wrapper(type: Wrapper) {
39 | gradleVersion = '4.4'
40 | distributionUrl = distributionUrl.replace("bin", "all")
41 | }
42 |
--------------------------------------------------------------------------------
/utils/fetch.ts:
--------------------------------------------------------------------------------
1 | import { AsyncStorage } from 'react-native';
2 | import { TOKEN_LABEL } from './config';
3 | import { stringify } from 'query-string';
4 | export const BASE_URL = 'http://sxyori.com:3003';
5 |
6 | /** 包装请求头 */
7 | const getHeader = async () => {
8 | /** 获得储存在本地的token */
9 | const token = await AsyncStorage.getItem(TOKEN_LABEL);
10 | /** 拼装鉴权头 */
11 | const authorization = token ? `JWT ${token}` : '';
12 |
13 | const header = new Headers({
14 | Accept: 'application/json',
15 | 'Content-Type': 'application/json',
16 | });
17 | if (token) {
18 | header.append('Authorization', authorization);
19 | }
20 | return header;
21 | };
22 |
23 | export const get = async (
24 | url: string,
25 | query?: {
26 | [key: string]: any;
27 | }
28 | ) => {
29 | let fullUrl = BASE_URL + url;
30 | if (query) {
31 | fullUrl += `?${stringify(query)}`;
32 | }
33 | return fetch(fullUrl, {
34 | method: 'GET',
35 | headers: await getHeader(),
36 | });
37 | };
38 |
39 | export const post = async (
40 | url: string,
41 | body?: any,
42 | query?: {
43 | [key: string]: any;
44 | }
45 | ) => {
46 | let fullUrl = BASE_URL + url;
47 | if (query) {
48 | fullUrl += `?${stringify(query)}`;
49 | }
50 | return fetch(fullUrl, {
51 | method: 'POST',
52 | headers: await getHeader(),
53 | body: JSON.stringify(body),
54 | });
55 | };
56 |
--------------------------------------------------------------------------------
/ios/Validator/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 | #ifdef DEBUG
20 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
21 | #else
22 | jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
23 | #endif
24 |
25 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
26 | moduleName:@"Validator"
27 | initialProperties:nil
28 | launchOptions:launchOptions];
29 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
30 |
31 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
32 | UIViewController *rootViewController = [UIViewController new];
33 | rootViewController.view = rootView;
34 | self.window.rootViewController = rootViewController;
35 | [self.window makeKeyAndVisible];
36 | return YES;
37 | }
38 |
39 | @end
40 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Validator",
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 | "@types/query-string": "^6.1.1",
11 | "qrcode.react": "^0.8.0",
12 | "query-string": "^6.2.0",
13 | "react": "16.6.3",
14 | "react-native": "0.57.8",
15 | "react-native-elements": "^0.19.1",
16 | "react-native-gesture-handler": "^1.0.12",
17 | "react-native-image-picker": "^0.27.2",
18 | "react-native-qrcode": "^0.2.7",
19 | "react-native-rsa-native": "^1.0.24",
20 | "react-native-spinkit": "^1.1.1",
21 | "react-native-touch-id": "^4.3.0",
22 | "react-native-vector-icons": "^6.1.0",
23 | "react-navigation": "^3.0.8",
24 | "styled-components": "^4.1.3",
25 | "tslib": "^1.9.3",
26 | "validator": "^10.9.0"
27 | },
28 | "devDependencies": {
29 | "@types/qrcode.react": "^0.8.1",
30 | "@types/react": "^16.7.17",
31 | "@types/react-native": "^0.57.18",
32 | "@types/react-native-elements": "^0.18.0",
33 | "@types/react-native-touch-id": "^4.0.1",
34 | "@types/react-navigation": "^2.13.8",
35 | "@types/styled-components": "^4.1.4",
36 | "@types/validator": "^9.4.4",
37 | "babel-jest": "23.6.0",
38 | "jest": "23.6.0",
39 | "metro-react-native-babel-preset": "0.48.5",
40 | "react-native-typescript-transformer": "^1.2.10",
41 | "react-test-renderer": "16.6.3",
42 | "typescript": "^3.2.2"
43 | },
44 | "jest": {
45 | "preset": "react-native"
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/ios/Validator/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "app-icon@40x1.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "app-icon@20x3.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "app-icon@29x2.png",
19 | "scale" : "2x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "app-icon@29x3.png",
25 | "scale" : "3x"
26 | },
27 | {
28 | "size" : "40x40",
29 | "idiom" : "iphone",
30 | "filename" : "app-icon@40x2.png",
31 | "scale" : "2x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "app-icon@40x3.png",
37 | "scale" : "3x"
38 | },
39 | {
40 | "size" : "60x60",
41 | "idiom" : "iphone",
42 | "filename" : "app-icon@40x3-1.png",
43 | "scale" : "2x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "app-icon@60x3.png",
49 | "scale" : "3x"
50 | },
51 | {
52 | "size" : "1024x1024",
53 | "idiom" : "ios-marketing",
54 | "filename" : "app-icon-iTunesArtwork.png",
55 | "scale" : "1x"
56 | },
57 | {
58 | "size" : "1024x1024",
59 | "idiom" : "ios-marketing",
60 | "filename" : "app-icon@1024x1.png",
61 | "scale" : "1x"
62 | }
63 | ],
64 | "info" : {
65 | "version" : 1,
66 | "author" : "xcode"
67 | }
68 | }
--------------------------------------------------------------------------------
/screens/MainStack/AuthLoading/index.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | * App用户身份认证时的Loading页面
3 | * @author wsq
4 | */
5 |
6 | import * as React from 'react';
7 | import { View, AsyncStorage } from 'react-native';
8 | import { Text } from 'react-native-elements';
9 | import { NavigationScreenProps } from 'react-navigation';
10 | import { get } from '../../../utils/fetch';
11 | import { Response, ResponseCode } from '../../../utils/interface';
12 | import { state } from '../../../utils/store';
13 | import { PRIVATE_KEY_LABEL } from '../../../utils/config';
14 | export interface AuthLoadingProps extends NavigationScreenProps {}
15 |
16 | export interface AuthLoadingState {}
17 |
18 | export default class AuthLoading extends React.Component {
19 | constructor(props: AuthLoadingProps) {
20 | super(props);
21 | this.state = {};
22 | /** 检测用户登录状态 */
23 | this._bootstrap();
24 | }
25 | _bootstrap = async () => {
26 | try {
27 | const res = await get('/auth');
28 | const data = (await res.json()) as Response;
29 | /** 将用户信息放入中心仓库中 */
30 | if (data.code === ResponseCode.SUCCESS) {
31 | state.user = data.data;
32 | /** 判断用户是否认证完毕 */
33 | this.props.navigation.navigate(
34 | state.user.publicKey && (await AsyncStorage.getItem(PRIVATE_KEY_LABEL)) ? 'Main' : 'Confirm'
35 | );
36 | } else {
37 | /** 认证失败, 跳转至鉴权界面 */
38 | this.props.navigation.navigate('Auth');
39 | }
40 | } catch (e) {
41 | /** 认证失败, 跳转至鉴权界面 */
42 | this.props.navigation.navigate('Auth');
43 | }
44 | };
45 |
46 | public render() {
47 | return (
48 |
49 | Loading...
50 |
51 | );
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/validator/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.validator;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.RNRSA.RNRSAPackage;
7 | import com.rnfingerprint.FingerprintAuthPackage;
8 | import com.react.rnspinkit.RNSpinkitPackage;
9 | import com.imagepicker.ImagePickerPackage;
10 | import com.swmansion.gesturehandler.react.RNGestureHandlerPackage;
11 | import com.oblador.vectoricons.VectorIconsPackage;
12 | import com.facebook.react.ReactNativeHost;
13 | import com.facebook.react.ReactPackage;
14 | import com.facebook.react.shell.MainReactPackage;
15 | import com.facebook.soloader.SoLoader;
16 |
17 | import java.util.Arrays;
18 | import java.util.List;
19 |
20 | public class MainApplication extends Application implements ReactApplication {
21 |
22 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
23 | @Override
24 | public boolean getUseDeveloperSupport() {
25 | return BuildConfig.DEBUG;
26 | }
27 |
28 | @Override
29 | protected List getPackages() {
30 | return Arrays.asList(
31 | new MainReactPackage(),
32 | new RNRSAPackage(),
33 | new FingerprintAuthPackage(),
34 | new RNSpinkitPackage(),
35 | new ImagePickerPackage(),
36 | new RNGestureHandlerPackage(),
37 | new VectorIconsPackage()
38 | );
39 | }
40 |
41 | @Override
42 | protected String getJSMainModuleName() {
43 | return "index";
44 | }
45 | };
46 |
47 | @Override
48 | public ReactNativeHost getReactNativeHost() {
49 | return mReactNativeHost;
50 | }
51 |
52 | @Override
53 | public void onCreate() {
54 | super.onCreate();
55 | SoLoader.init(this, /* native exopackage */ false);
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/ios/Validator-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 |
--------------------------------------------------------------------------------
/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.validator",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.validator",
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 |
--------------------------------------------------------------------------------
/App.tsx:
--------------------------------------------------------------------------------
1 | import { createStackNavigator, createNavigationContainer, createSwitchNavigator } from 'react-navigation';
2 | import SignUp from './screens/AuthStack/SignUp';
3 | import SignIn from './screens/AuthStack/SignIn';
4 | import AuthLoading from './screens/MainStack/AuthLoading';
5 | import InputInfo from './screens/ConfirmStack/InputInfo';
6 | import ConfirmSuccess from './screens/ConfirmStack/ConfirmSuccess';
7 | import Home from './screens/MainStack/Home';
8 | import QRcode from './screens/MainStack/Home/QRcode';
9 | import AuthScreen from './screens/MainStack/Home/Auth';
10 | import RecordScreen from './screens/MainStack/Home/Record';
11 |
12 | const MainStack = createStackNavigator(
13 | {
14 | Home: {
15 | screen: Home,
16 | navigationOptions: () => ({
17 | title: `首页`,
18 | }),
19 | },
20 | QRcode: {
21 | screen: QRcode,
22 | navigationOptions: () => ({
23 | title: `我的身份二维码`,
24 | }),
25 | },
26 | AuthScreen: {
27 | screen: AuthScreen,
28 | navigationOptions: () => ({
29 | title: `授权请求`,
30 | }),
31 | },
32 | RecordScreen: {
33 | screen: RecordScreen,
34 | navigationOptions: () => ({
35 | title: `认证记录`,
36 | }),
37 | },
38 | },
39 | {
40 | headerTransitionPreset: 'fade-in-place',
41 | }
42 | );
43 |
44 | const AuthStack = createStackNavigator(
45 | {
46 | SignUp,
47 | SignIn,
48 | },
49 | {
50 | initialRouteName: 'SignIn',
51 | headerMode: 'none',
52 | }
53 | );
54 |
55 | const ConfirmStack = createSwitchNavigator(
56 | {
57 | InputInfo,
58 | ConfirmSuccess,
59 | },
60 | {
61 | initialRouteName: 'InputInfo',
62 | }
63 | );
64 |
65 | const RootStack = createSwitchNavigator(
66 | {
67 | AuthLoading,
68 | Main: MainStack,
69 | Auth: AuthStack,
70 | Confirm: ConfirmStack,
71 | },
72 | {
73 | initialRouteName: 'AuthLoading',
74 | }
75 | );
76 |
77 | export default createNavigationContainer(RootStack);
78 |
--------------------------------------------------------------------------------
/ios/ValidatorTests/ValidatorTests.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 ValidatorTests : XCTestCase
18 |
19 | @end
20 |
21 | @implementation ValidatorTests
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 |
--------------------------------------------------------------------------------
/components/MyImagePicker.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { ImageSourcePropType, Image } from 'react-native';
3 | import ImagePicker from 'react-native-image-picker';
4 | import { color } from '../theme';
5 | import styled from 'styled-components/native';
6 | import Spinner from 'react-native-spinkit';
7 |
8 | export interface MyImagePickerProps {
9 | image: ImageSourcePropType;
10 | onSubmit(uri: string): any;
11 | }
12 |
13 | export interface MyImagePickerState {
14 | loading: boolean;
15 | }
16 |
17 | export default class MyImagePicker extends React.Component {
18 | constructor(props: MyImagePickerProps) {
19 | super(props);
20 |
21 | this.state = {
22 | loading: false,
23 | };
24 | }
25 |
26 | onSelect = () => {
27 | if (!this.state.loading) {
28 | this.setState({
29 | loading: true,
30 | });
31 | ImagePicker.showImagePicker(
32 | {
33 | title: '上传图片',
34 | cancelButtonTitle: '取消',
35 | takePhotoButtonTitle: '使用相机拍摄',
36 | chooseFromLibraryButtonTitle: '从相册选择',
37 | },
38 | (res) => {
39 | if (res.uri) {
40 | this.props.onSubmit('data:image/jpeg;base64,' + res.data);
41 | }
42 | this.setState({
43 | loading: false,
44 | });
45 | }
46 | );
47 | }
48 | };
49 |
50 | public render() {
51 | return (
52 |
53 | {this.props.image && }
54 | {this.state.loading && (
55 |
56 | )}
57 | {!this.props.image &&
58 | !this.state.loading && (
59 |
60 |
61 |
62 | )}
63 |
64 | );
65 | }
66 | }
67 |
68 | const Container = styled.TouchableOpacity`
69 | position: relative;
70 | height: 200px;
71 | margin: 20px;
72 | display: flex;
73 | justify-content: center;
74 | align-items: center;
75 | `;
76 |
77 | const FinalImage = styled.Image`
78 | position: absolute;
79 | top: 0;
80 | left: 0;
81 | right: 0;
82 | bottom: 0;
83 | `;
84 |
85 | const TapArea = styled.View`
86 | position: absolute;
87 | top: 0;
88 | left: 0;
89 | right: 0;
90 | bottom: 0;
91 | display: flex;
92 | flex-direction: column;
93 | justify-content: center;
94 | align-items: center;
95 | `;
96 |
--------------------------------------------------------------------------------
/.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 | esproposal.optional_chaining=enable
33 | esproposal.nullish_coalescing=enable
34 |
35 | module.system=haste
36 | module.system.haste.use_name_reducers=true
37 | # get basename
38 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
39 | # strip .js or .js.flow suffix
40 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
41 | # strip .ios suffix
42 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
43 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
44 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
45 | module.system.haste.paths.blacklist=.*/__tests__/.*
46 | module.system.haste.paths.blacklist=.*/__mocks__/.*
47 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.*
48 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.*
49 |
50 | munge_underscores=true
51 |
52 | 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'
53 |
54 | module.file_ext=.js
55 | module.file_ext=.jsx
56 | module.file_ext=.json
57 | module.file_ext=.native.js
58 |
59 | suppress_type=$FlowIssue
60 | suppress_type=$FlowFixMe
61 | suppress_type=$FlowFixMeProps
62 | suppress_type=$FlowFixMeState
63 |
64 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
65 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
66 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
67 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
68 |
69 | [version]
70 | ^0.78.0
71 |
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | set DIRNAME=%~dp0
12 | if "%DIRNAME%" == "" set DIRNAME=.
13 | set APP_BASE_NAME=%~n0
14 | set APP_HOME=%DIRNAME%
15 |
16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17 | set DEFAULT_JVM_OPTS=
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windows variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 |
53 | :win9xME_args
54 | @rem Slurp the command line arguments.
55 | set CMD_LINE_ARGS=
56 | set _SKIP=2
57 |
58 | :win9xME_args_slurp
59 | if "x%~1" == "x" goto execute
60 |
61 | set CMD_LINE_ARGS=%*
62 |
63 | :execute
64 | @rem Setup the command line
65 |
66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
67 |
68 | @rem Execute Gradle
69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
70 |
71 | :end
72 | @rem End local scope for the variables with windows NT shell
73 | if "%ERRORLEVEL%"=="0" goto mainEnd
74 |
75 | :fail
76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
77 | rem the _cmd.exe /c_ return code!
78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
79 | exit /b 1
80 |
81 | :mainEnd
82 | if "%OS%"=="Windows_NT" endlocal
83 |
84 | :omega
85 |
--------------------------------------------------------------------------------
/screens/MainStack/Home/Record/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { NavigationScreenProps } from 'react-navigation';
3 | import Container from '../../../../components/Container';
4 | import styled from 'styled-components/native';
5 | import { Divider, Text } from 'react-native-elements';
6 | import { color } from '../../../../theme';
7 | import { ScrollView } from 'react-native';
8 | import TouchID from 'react-native-touch-id';
9 |
10 | export interface RecordScreenProps extends NavigationScreenProps {}
11 |
12 | export interface RecordScreenState {
13 | isAuth: boolean;
14 | }
15 |
16 | export default class RecordScreen extends React.Component {
17 | constructor(props: RecordScreenProps) {
18 | super(props);
19 |
20 | this.state = {
21 | isAuth: false,
22 | };
23 | }
24 |
25 | public render() {
26 | return (
27 |
28 | {this.state.isAuth && (
29 |
30 | 出示身份二维码
31 | 时间: 2018/8/21 上午 9:40:50
32 |
33 | 来自 12306 的授权请求
34 | 原因: 购买 G83 北京西 9∶00 长沙南 14∶40 二等座车票
35 | 时间: 2018/9/18 下午 5:13:45
36 |
37 | 出示身份二维码
38 | 时间: 2018/9/20 上午 10:50:18
39 |
40 | 来自 12306 的授权请求
41 | 原因: 购买 G86 北京西 14∶00 长沙南 21∶30 二等座车票
42 | 时间: 2018/10/1 下午 6:20:57
43 |
44 | 出示身份二维码
45 | 时间: 2018/10/2 下午 1:35:40
46 |
47 |
48 | 没有更多记录了
49 |
50 |
51 | )}
52 |
53 | );
54 | }
55 |
56 | async componentWillMount() {
57 | /** 用户点击生成二维码按钮 */
58 |
59 | try {
60 | const isAuthenticate = await TouchID.authenticate('请进行生物认证', {
61 | color: color.primary,
62 | fallbackTitle: '',
63 | });
64 | if (!isAuthenticate) {
65 | this.props.navigation.goBack();
66 | } else {
67 | this.setState({
68 | isAuth: true,
69 | });
70 | }
71 | } catch (error) {
72 | this.props.navigation.goBack();
73 | }
74 | }
75 | }
76 |
77 | const MyTitle = styled.Text`
78 | font-size: 20;
79 | font-weight: 500;
80 | margin-top: 20;
81 | margin-bottom: 20;
82 | `;
83 |
84 | const MyText = styled.Text`
85 | font-size: 16;
86 | line-height: 25;
87 | margin-bottom: 20;
88 | color: #555;
89 | `;
90 |
--------------------------------------------------------------------------------
/screens/MainStack/Home/Auth/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { NavigationScreenProps } from 'react-navigation';
3 | import Container from '../../../../components/Container';
4 | import Title from '../../../../components/Title';
5 | import { Text, Button } from 'react-native-elements';
6 | import { View, Alert } from 'react-native';
7 | import { color } from '../../../../theme';
8 | import styled from 'styled-components/native';
9 | import TouchID from 'react-native-touch-id';
10 |
11 | export interface AuthScreenProps extends NavigationScreenProps {}
12 |
13 | export interface AuthScreenState {}
14 |
15 | export default class AuthScreen extends React.Component {
16 | constructor(props: AuthScreenProps) {
17 | super(props);
18 |
19 | this.state = {};
20 | }
21 |
22 | onSubmit = async () => {
23 | try {
24 | const isAuthenticate = await TouchID.authenticate('请进行生物认证', {
25 | color: color.primary,
26 | fallbackTitle: '',
27 | });
28 | if (isAuthenticate) {
29 | Alert.alert('成功', '您已授权成功', [
30 | {
31 | text: 'OK',
32 | onPress: () => {
33 | this.props.navigation.goBack();
34 | },
35 | },
36 | ]);
37 | }
38 | } catch (error) {
39 | Alert.alert('失败', '请进行生物认证');
40 | }
41 | };
42 |
43 | onCancel = () => {
44 | this.props.navigation.goBack();
45 | };
46 |
47 | public render() {
48 | return (
49 |
50 | 来自 12306
51 |
60 |
61 | 授权原因
62 | 购买 G83 北京西 9∶00 长沙南 14∶40 二等座车票
63 | 授权时间
64 | {new Date().toLocaleString()}
65 |
66 |
67 |
68 |
76 |
77 |
78 |
79 | );
80 | }
81 | }
82 |
83 | const MyText = styled.Text`
84 | margin-top: 20;
85 | margin-bottom: 20;
86 | margin-left: 20;
87 | margin-right: 20;
88 | font-size: 16;
89 | line-height: 25;
90 | `;
91 |
92 | const MyTitle = styled.Text`
93 | margin-left: 20;
94 | margin-right: 20;
95 | font-size: 20;
96 | font-weight: 500;
97 | `;
98 |
--------------------------------------------------------------------------------
/ios/Validator/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | 铁旅ID
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | LSRequiresIPhoneOS
26 |
27 | NSAppTransportSecurity
28 |
29 | NSAllowsArbitraryLoads
30 |
31 | NSExceptionDomains
32 |
33 | localhost
34 |
35 | NSExceptionAllowsInsecureHTTPLoads
36 |
37 |
38 |
39 |
40 | NSFaceIDUsageDescription
41 | 生物信息加密
42 | NSLocationWhenInUseUsageDescription
43 |
44 | NSMainNibFile
45 | LaunchScreen
46 | NSPhotoLibraryUsageDescription
47 | 身份信息上传
48 | UIAppFonts
49 |
50 | AntDesign.ttf
51 | Entypo.ttf
52 | EvilIcons.ttf
53 | Feather.ttf
54 | FontAwesome.ttf
55 | FontAwesome5_Brands.ttf
56 | FontAwesome5_Regular.ttf
57 | FontAwesome5_Solid.ttf
58 | Foundation.ttf
59 | Ionicons.ttf
60 | MaterialCommunityIcons.ttf
61 | MaterialIcons.ttf
62 | Octicons.ttf
63 | SimpleLineIcons.ttf
64 | Zocial.ttf
65 |
66 | UILaunchStoryboardName
67 | LaunchScreen
68 | UIRequiredDeviceCapabilities
69 |
70 | armv7
71 |
72 | UISupportedInterfaceOrientations
73 |
74 | UIInterfaceOrientationPortrait
75 | UIInterfaceOrientationLandscapeLeft
76 | UIInterfaceOrientationLandscapeRight
77 |
78 | UIViewControllerBasedStatusBarAppearance
79 |
80 |
81 |
82 |
--------------------------------------------------------------------------------
/screens/MainStack/Home/QRcode/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { NavigationScreenProps } from 'react-navigation';
3 | import Container from '../../../../components/Container';
4 | import { get } from '../../../../utils/fetch';
5 | import { Response, ResponseCode } from '../../../../utils/interface';
6 | import { AsyncStorage, Alert, View } from 'react-native';
7 | import { PRIVATE_KEY_LABEL } from '../../../../utils/config';
8 | import { RSA } from 'react-native-rsa-native';
9 | import TouchID from 'react-native-touch-id';
10 | import { color } from '../../../../theme';
11 | import { Text } from 'react-native-elements';
12 | import Spinner from 'react-native-spinkit';
13 | import QRCode from 'react-native-qrcode';
14 | import { state } from '../../../../utils/store';
15 | export interface QRcodeProps extends NavigationScreenProps {}
16 |
17 | export interface QRcodeState {
18 | qrcodeInfo: string;
19 | }
20 |
21 | export default class QRcode extends React.Component {
22 | constructor(props: QRcodeProps) {
23 | super(props);
24 |
25 | this.state = {
26 | qrcodeInfo: '',
27 | };
28 | }
29 | /** 获取用户自身信息 */
30 | getQrcodeInfo = async () => {
31 | const res = await get('/user/confirm');
32 | const data = (await res.json()) as Response;
33 | switch (data.code) {
34 | case ResponseCode.SUCCESS:
35 | /** 使用私钥解密 */
36 | const privateKey = await AsyncStorage.getItem(PRIVATE_KEY_LABEL);
37 | return {
38 | username: state.user.username,
39 | timstamp: new Date().getTime(),
40 | data: data.data
41 | };
42 | default:
43 | break;
44 | }
45 | };
46 |
47 | /** 用户点击生成二维码按钮 */
48 | onQrcodeGenerate = async () => {
49 | try {
50 | const isAuthenticate = await TouchID.authenticate('请进行生物认证', {
51 | color: color.primary,
52 | fallbackTitle: '',
53 | });
54 | if (isAuthenticate) {
55 | const qrcodeInfo = await this.getQrcodeInfo();
56 | this.setState({
57 | qrcodeInfo: JSON.stringify(qrcodeInfo),
58 | });
59 | }
60 | } catch (error) {
61 | Alert.alert('失败', '请进行生物认证');
62 | }
63 | };
64 |
65 | componentWillMount() {
66 | this.onQrcodeGenerate();
67 | }
68 |
69 | componentWillUnmount() {
70 | this.setState({
71 | qrcodeInfo: '',
72 | });
73 | }
74 |
75 | public render() {
76 | return (
77 |
78 | {this.state.qrcodeInfo.length === 0 ? (
79 |
80 |
81 | 努力加载信息中...
82 |
83 | ) : (
84 |
85 | )}
86 |
87 | );
88 | }
89 | }
90 |
--------------------------------------------------------------------------------
/ios/Validator/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/screens/MainStack/Home/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { NavigationScreenProps } from 'react-navigation';
3 | import { List, ListItem, IconProps } from 'react-native-elements';
4 | import Container from '../../../components/Container';
5 | import { state } from '../../../utils/store';
6 | import { AsyncStorage, Alert } from 'react-native';
7 | import { TOKEN_LABEL } from '../../../utils/config';
8 |
9 | import styled from 'styled-components/native';
10 | import Title from '../../../components/Title';
11 |
12 | export interface HomeProps extends NavigationScreenProps {}
13 |
14 | export interface HomeState {
15 | qrcodeInfo: string;
16 | }
17 |
18 | export interface ListType {
19 | key: string;
20 | title: string;
21 | icon: IconProps;
22 | onPress?: any;
23 | }
24 |
25 | export default class Home extends React.Component {
26 | constructor(props: HomeProps) {
27 | super(props);
28 |
29 | this.state = {
30 | qrcodeInfo: '',
31 | };
32 | }
33 |
34 | LIST: ListType[] = [
35 | {
36 | key: 'qrcode',
37 | title: '身份二维码',
38 | icon: {
39 | name: 'qrcode',
40 | type: 'material-community',
41 | },
42 | onPress: () => {
43 | this.props.navigation.push('QRcode');
44 | },
45 | },
46 | {
47 | key: 'auth',
48 | title: '请求认证',
49 | icon: {
50 | name: 'box',
51 | type: 'feather',
52 | },
53 | onPress: () => {
54 | this.props.navigation.push('AuthScreen');
55 | },
56 | },
57 | {
58 | key: 'search',
59 | title: '查询认证记录',
60 | icon: {
61 | name: 'search',
62 | },
63 | onPress: () => {
64 | this.props.navigation.push('RecordScreen');
65 | },
66 | },
67 | {
68 | key: 'logout',
69 | title: '登出',
70 | icon: {
71 | name: 'logout-variant',
72 | type: 'material-community',
73 | },
74 | onPress: () => {
75 | this.onLogout();
76 | },
77 | },
78 | {
79 | key: 'clear',
80 | title: '清除所有数据',
81 | icon: {
82 | name: 'clear',
83 | type: 'material',
84 | color: 'red',
85 | },
86 | onPress: () => {
87 | this.onClear();
88 | },
89 | },
90 | ];
91 |
92 | onClear = async () => {
93 | Alert.alert('确定清空吗', '再次使用将需要重新认证', [
94 | {
95 | text: '取消',
96 | style: 'cancel',
97 | },
98 | {
99 | text: '确定',
100 | style: 'destructive',
101 | onPress: async () => {
102 | await AsyncStorage.clear();
103 | this.props.navigation.navigate('AuthLoading');
104 | },
105 | },
106 | ]);
107 | };
108 |
109 | onLogout = async () => {
110 | Alert.alert('确定登出吗', '', [
111 | {
112 | text: '取消',
113 | style: 'cancel',
114 | },
115 | {
116 | text: '确定',
117 | style: 'destructive',
118 | onPress: async () => {
119 | await AsyncStorage.removeItem(TOKEN_LABEL);
120 | this.props.navigation.navigate('AuthLoading');
121 | },
122 | },
123 | ]);
124 | };
125 |
126 | public render() {
127 | return (
128 |
129 | 欢迎, {state.user.username}
130 |
131 | {this.LIST.map((item) => (
132 |
133 | ))}
134 |
135 |
136 | );
137 | }
138 | }
139 |
140 | const Row = styled.TouchableOpacity`
141 | display: flex;
142 | margin-top: -60;
143 | flex-direction: row;
144 | justify-content: center;
145 | align-items: center;
146 | height: 500;
147 | `;
148 |
--------------------------------------------------------------------------------
/screens/AuthStack/SignIn/index.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | * 用户注册页面
3 | * @author wsq
4 | */
5 |
6 | import * as React from 'react';
7 | import { StyleSheet, Text, View, AsyncStorage } from 'react-native';
8 | import { Button, FormInput, FormLabel, FormValidationMessage } from 'react-native-elements';
9 | import { color, fontFamily } from '../../../theme';
10 | import { NavigationScreenProps } from 'react-navigation';
11 | import { TOKEN_LABEL } from '../../../utils/config';
12 | import { post } from '../../../utils/fetch';
13 | import { Response, ResponseCode } from '../../../utils/interface';
14 | import Title from '../../../components/Title';
15 | import Container from '../../../components/Container';
16 | import Form from '../../../components/Form/Form';
17 | export interface SignInProps extends NavigationScreenProps {}
18 |
19 | export interface SignInState {
20 | username: string;
21 | password: string;
22 | usernameErrorMessage: string;
23 | passwordErrorMessage: string;
24 | loading: number;
25 | }
26 |
27 | export default class SignIn extends React.Component {
28 | constructor(params) {
29 | super(params);
30 | this.state = {
31 | username: '',
32 | password: '',
33 | usernameErrorMessage: '',
34 | passwordErrorMessage: '',
35 | loading: 0,
36 | };
37 | }
38 |
39 | onUsernameChange = (text: string) => {
40 | this.setState({
41 | username: text,
42 | });
43 | this.setState({
44 | usernameErrorMessage: '',
45 | });
46 | };
47 |
48 | onPasswordChange = (text: string) => {
49 | this.setState({
50 | password: text,
51 | });
52 | this.setState({
53 | passwordErrorMessage: '',
54 | });
55 | };
56 |
57 | /** 验证字段是否都有效 */
58 | get isValid() {
59 | return (
60 | this.state.username &&
61 | !this.state.usernameErrorMessage &&
62 | this.state.password &&
63 | !this.state.passwordErrorMessage
64 | );
65 | }
66 | onSubmit = async () => {
67 | if (this.isValid) {
68 | this.setState({
69 | loading: this.state.loading + 1,
70 | });
71 | const { username, password } = this.state;
72 | const res = await post('/auth', {
73 | username,
74 | password,
75 | });
76 | const data = (await res.json()) as Response;
77 |
78 | /** 判断请求结果 */
79 | switch (data.code) {
80 | /** 用户名不存在 */
81 | case ResponseCode.USERNAME_NOT_EXIST:
82 | this.setState({
83 | usernameErrorMessage: '用户名不存在',
84 | });
85 | break;
86 |
87 | /** 密码错误 */
88 | case ResponseCode.INVALID_PASSWORD:
89 | this.setState({
90 | passwordErrorMessage: '密码错误',
91 | });
92 | break;
93 |
94 | /** 登录成功 */
95 | case ResponseCode.SUCCESS:
96 | /** 将token写入本地存储内 */
97 | await AsyncStorage.setItem(TOKEN_LABEL, data.data.token);
98 |
99 | /** 跳转至主流程 */
100 | this.props.navigation.navigate('AuthLoading');
101 |
102 | default:
103 | break;
104 | }
105 |
106 | this.setState({
107 | loading: this.state.loading - 1,
108 | });
109 | }
110 | };
111 | render() {
112 | return (
113 |
114 | 登录
115 |
129 |
150 | );
151 | }
152 | }
153 |
154 | export const styles = StyleSheet.create({
155 | button: {
156 | marginTop: 40,
157 | },
158 | bottomContainer: {
159 | display: 'flex',
160 | flexDirection: 'row',
161 | justifyContent: 'center',
162 | },
163 | bottomText: {
164 | color: color.info,
165 | marginTop: 20,
166 | },
167 | signInLink: {
168 | padding: 20,
169 | paddingLeft: 10,
170 | color: color.primary,
171 | fontWeight: 'bold',
172 | },
173 | });
174 |
--------------------------------------------------------------------------------
/ios/Validator.xcodeproj/xcshareddata/xcschemes/Validator.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/Validator.xcodeproj/xcshareddata/xcschemes/Validator-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 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/screens/AuthStack/SignUp/index.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | * 用户注册页面
3 | * @author wsq
4 | */
5 |
6 | import * as React from 'react';
7 | import { StyleSheet, Text, View, Alert, AsyncStorage } from 'react-native';
8 | import { Button, FormInput, FormLabel, FormValidationMessage } from 'react-native-elements';
9 | import { color, fontFamily } from '../../../theme';
10 | import { isAlphanumeric } from 'validator';
11 | import { NavigationScreenProps } from 'react-navigation';
12 | import { get, post } from '../../../utils/fetch';
13 | import { Response, ResponseCode } from '../../../utils/interface';
14 | import Title from '../../../components/Title';
15 | import Container from '../../../components/Container';
16 | import Form from '../../../components/Form/Form';
17 |
18 | export interface SignUpProps extends NavigationScreenProps {}
19 |
20 | export interface SignUpState {
21 | username: string;
22 | password: string;
23 | checkPassword: string;
24 | usernameErrorMessage: string;
25 | passwordErrorMessage: string;
26 | checkPasswordErrorMessage: string;
27 | loading: number;
28 | }
29 |
30 | export default class SignUp extends React.Component {
31 | constructor(params) {
32 | super(params);
33 | this.state = {
34 | username: '',
35 | password: '',
36 | checkPassword: '',
37 | usernameErrorMessage: '',
38 | passwordErrorMessage: '',
39 | checkPasswordErrorMessage: '',
40 | loading: 0,
41 | };
42 | }
43 |
44 | onUsernameChange = (text: string) => {
45 | this.setState({
46 | username: text,
47 | });
48 | if (text && (text.length < 5 || text.length > 12)) {
49 | this.setState({
50 | usernameErrorMessage: '用户名长度应在5-12位之间',
51 | });
52 | } else if (text && !isAlphanumeric(text)) {
53 | this.setState({
54 | usernameErrorMessage: '用户名包含特殊字符',
55 | });
56 | } else {
57 | this.setState({
58 | usernameErrorMessage: '',
59 | });
60 | }
61 | };
62 |
63 | onPasswordChange = (text: string) => {
64 | this.setState({
65 | password: text,
66 | });
67 | if (text && (text.length < 8 || text.length > 20)) {
68 | this.setState({
69 | passwordErrorMessage: '密码长度应在8-20位之间',
70 | });
71 | } else {
72 | this.setState({
73 | passwordErrorMessage: '',
74 | });
75 | }
76 | };
77 |
78 | onCheckPasswordChange = (text: string) => {
79 | this.setState({
80 | checkPassword: text,
81 | });
82 | if (text && text !== this.state.password) {
83 | this.setState({
84 | checkPasswordErrorMessage: '两次密码输入不一致',
85 | });
86 | } else {
87 | this.setState({
88 | checkPasswordErrorMessage: '',
89 | });
90 | }
91 | };
92 |
93 | /** 验证字段是否都有效 */
94 | get isValid() {
95 | return (
96 | this.state.username &&
97 | !this.state.usernameErrorMessage &&
98 | this.state.password &&
99 | !this.state.passwordErrorMessage &&
100 | this.state.checkPassword &&
101 | !this.state.checkPasswordErrorMessage
102 | );
103 | }
104 | onSubmit = async () => {
105 | if (this.isValid) {
106 | this.setState({
107 | loading: this.state.loading + 1,
108 | });
109 | const res = await post('/user', {
110 | username: this.state.username,
111 | password: this.state.password,
112 | });
113 | const data = (await res.json()) as Response;
114 |
115 | /** 判断请求结果 */
116 | switch (data.code) {
117 | /** 用户名已存在 */
118 | case ResponseCode.USERNAME_EXIST:
119 | this.setState({
120 | usernameErrorMessage: '用户名已存在',
121 | });
122 | break;
123 | case ResponseCode.SUCCESS:
124 | /** 将token写入本地存储内 */
125 | await AsyncStorage.setItem('token', data.data.token);
126 | Alert.alert('注册成功', null, [
127 | {
128 | text: 'OK',
129 | onPress: () => {
130 | /** 跳转至登录 */
131 | this.props.navigation.navigate('AuthLoading');
132 | },
133 | },
134 | ]);
135 | break;
136 | default:
137 | break;
138 | }
139 | this.setState({
140 | loading: this.state.loading - 1,
141 | });
142 | }
143 | };
144 | render() {
145 | return (
146 |
147 | 注册账户
148 |
171 |
192 | );
193 | }
194 | }
195 |
196 | export const styles = StyleSheet.create({
197 | button: {
198 | marginTop: 40,
199 | },
200 | bottomContainer: {
201 | display: 'flex',
202 | flexDirection: 'row',
203 | justifyContent: 'center',
204 | },
205 | bottomText: {
206 | color: color.info,
207 | marginTop: 20,
208 | },
209 | signInLink: {
210 | padding: 20,
211 | paddingLeft: 10,
212 | color: color.primary,
213 | fontWeight: 'bold',
214 | },
215 | });
216 |
--------------------------------------------------------------------------------
/screens/ConfirmStack/InputInfo/index.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react';
2 | import { NavigationScreenProps } from 'react-navigation';
3 | import Title from '../../../components/Title';
4 | import { FormLabel, FormInput, FormValidationMessage, Button } from 'react-native-elements';
5 | import Form from '../../../components/Form/Form';
6 | import { isMobilePhone } from 'validator';
7 | import ImagePicker from '../../../components/MyImagePicker';
8 | import styled from 'styled-components/native';
9 | import { SafeAreaView, Alert, AsyncStorage } from 'react-native';
10 | import { color } from '../../../theme';
11 | import TouchID from 'react-native-touch-id';
12 | import { post } from '../../../utils/fetch';
13 | import { ResponseCode } from '../../../utils/interface';
14 | import { PRIVATE_KEY_LABEL } from '../../../utils/config';
15 | import { RSA, RSAKeychain } from 'react-native-rsa-native';
16 | import { state } from '../../../utils/store';
17 |
18 | const ID_CARD_REGEX = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
19 |
20 | export interface InputInfoProps extends NavigationScreenProps {}
21 |
22 | export interface InputInfoState {
23 | phoneNumber: string;
24 | idCardNumber: string;
25 | idCardFrontPicture: string;
26 | idCardBehindPicture: string;
27 | phoneNumberErrorMessage: string;
28 | idCardNumberErrorMessage: string;
29 | idCardFrontPictureErrorMessage: string;
30 | idCardBehindPictureErrorMessage: string;
31 | loading: number;
32 | }
33 |
34 | export default class InputInfo extends React.Component {
35 | constructor(props: InputInfoProps) {
36 | super(props);
37 |
38 | this.state = {
39 | phoneNumber: null,
40 | idCardNumber: null,
41 | idCardFrontPicture: '',
42 | idCardBehindPicture: '',
43 | phoneNumberErrorMessage: '',
44 | idCardNumberErrorMessage: '',
45 | idCardFrontPictureErrorMessage: '',
46 | idCardBehindPictureErrorMessage: '',
47 | loading: 0,
48 | };
49 | }
50 |
51 | onPhoneNumberChange = (text: string) => {
52 | this.setState({
53 | phoneNumber: text,
54 | });
55 | if (text && !isMobilePhone(text, 'zh-CN')) {
56 | this.setState({
57 | phoneNumberErrorMessage: '请输入有效的手机号',
58 | });
59 | } else {
60 | this.setState({
61 | phoneNumberErrorMessage: '',
62 | });
63 | }
64 | };
65 |
66 | onIdCardNumberChange = (text: string) => {
67 | this.setState({
68 | idCardNumber: text,
69 | });
70 | if (text && !ID_CARD_REGEX.test(text)) {
71 | this.setState({
72 | idCardNumberErrorMessage: '请输入有效身份证号',
73 | });
74 | } else {
75 | this.setState({
76 | idCardNumberErrorMessage: '',
77 | });
78 | }
79 | };
80 |
81 | onIdCardPictureFrontChange = (text: string) => {
82 | this.setState({
83 | idCardFrontPictureErrorMessage: '',
84 | idCardFrontPicture: text,
85 | });
86 | };
87 |
88 | onIdCardPictureBehindChange = (text: string) => {
89 | this.setState({
90 | idCardBehindPictureErrorMessage: '',
91 | idCardBehindPicture: text,
92 | });
93 | };
94 |
95 | get isValid() {
96 | return (
97 | this.state.idCardNumber &&
98 | this.state.phoneNumber &&
99 | this.state.idCardBehindPicture &&
100 | this.state.idCardFrontPicture &&
101 | !this.state.phoneNumberErrorMessage &&
102 | !this.state.idCardNumberErrorMessage &&
103 | !this.state.idCardFrontPictureErrorMessage &&
104 | !this.state.idCardBehindPictureErrorMessage
105 | );
106 | }
107 |
108 | onSubmit = async () => {
109 | if (this.isValid) {
110 | if (!await TouchID.isSupported) {
111 | Alert.alert('无法提交', '您的设备不支持生物加密技术, 请更换设备');
112 | } else {
113 | this.setState({
114 | loading: this.state.loading + 1,
115 | });
116 | try {
117 | const isAuthenticate = await TouchID.authenticate('请进行生物认证', {
118 | color: color.primary,
119 | fallbackTitle: '',
120 | });
121 | if (isAuthenticate) {
122 | /** 生成RSA秘钥对 */
123 | const keys = await RSA.generateKeys(4096);
124 |
125 | const res = await post('/user/confirm', {
126 | phoneNumber: this.state.phoneNumber,
127 | idCardNumber: this.state.idCardNumber,
128 | publicKey: keys.public,
129 | });
130 |
131 | const data = await res.json();
132 | switch (data.code) {
133 | case ResponseCode.SUCCESS:
134 | await AsyncStorage.setItem(PRIVATE_KEY_LABEL, keys.private);
135 | Alert.alert('认证成功');
136 | state.user = null;
137 | this.props.navigation.navigate('AuthLoading');
138 | break;
139 |
140 | default:
141 | Alert.alert('认证失败', '请再次尝试');
142 | break;
143 | }
144 | } else {
145 | Alert.alert('认证失败', '请再次尝试');
146 | }
147 | } catch (error) {
148 | console.error(error);
149 | Alert.alert('认证失败', '请再次尝试');
150 | } finally {
151 | this.setState({
152 | loading: this.state.loading - 1,
153 | });
154 | }
155 | }
156 | }
157 | };
158 |
159 | public render() {
160 | return (
161 |
162 |
163 | 身份信息核实
164 |
184 |
194 |
195 | );
196 | }
197 | }
198 |
199 | const ScrollView = styled.ScrollView`padding: 20px;`;
200 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation
19 | * entryFile: "index.android.js",
20 | *
21 | * // whether to bundle JS and assets in debug mode
22 | * bundleInDebug: false,
23 | *
24 | * // whether to bundle JS and assets in release mode
25 | * bundleInRelease: true,
26 | *
27 | * // whether to bundle JS and assets in another build variant (if configured).
28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
29 | * // The configuration property can be in the following formats
30 | * // 'bundleIn${productFlavor}${buildType}'
31 | * // 'bundleIn${buildType}'
32 | * // bundleInFreeDebug: true,
33 | * // bundleInPaidRelease: true,
34 | * // bundleInBeta: true,
35 | *
36 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
37 | * // for example: to disable dev mode in the staging build type (if configured)
38 | * devDisabledInStaging: true,
39 | * // The configuration property can be in the following formats
40 | * // 'devDisabledIn${productFlavor}${buildType}'
41 | * // 'devDisabledIn${buildType}'
42 | *
43 | * // the root of your project, i.e. where "package.json" lives
44 | * root: "../../",
45 | *
46 | * // where to put the JS bundle asset in debug mode
47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
48 | *
49 | * // where to put the JS bundle asset in release mode
50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
51 | *
52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
53 | * // require('./image.png')), in debug mode
54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
55 | *
56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
57 | * // require('./image.png')), in release mode
58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
59 | *
60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64 | * // for example, you might want to remove it from here.
65 | * inputExcludes: ["android/**", "ios/**"],
66 | *
67 | * // override which node gets called and with what additional arguments
68 | * nodeExecutableAndArgs: ["node"],
69 | *
70 | * // supply additional arguments to the packager
71 | * extraPackagerArgs: []
72 | * ]
73 | */
74 |
75 | project.ext.react = [
76 | entryFile: "index.js"
77 | ]
78 |
79 | apply from: "../../node_modules/react-native/react.gradle"
80 |
81 | /**
82 | * Set this to true to create two separate APKs instead of one:
83 | * - An APK that only works on ARM devices
84 | * - An APK that only works on x86 devices
85 | * The advantage is the size of the APK is reduced by about 4MB.
86 | * Upload all the APKs to the Play Store and people will download
87 | * the correct one based on the CPU architecture of their device.
88 | */
89 | def enableSeparateBuildPerCPUArchitecture = false
90 |
91 | /**
92 | * Run Proguard to shrink the Java bytecode in release builds.
93 | */
94 | def enableProguardInReleaseBuilds = false
95 |
96 | android {
97 | compileSdkVersion rootProject.ext.compileSdkVersion
98 | buildToolsVersion rootProject.ext.buildToolsVersion
99 |
100 | defaultConfig {
101 | applicationId "com.validator"
102 | minSdkVersion rootProject.ext.minSdkVersion
103 | targetSdkVersion rootProject.ext.targetSdkVersion
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-rsa-native')
141 | compile project(':react-native-touch-id')
142 | compile project(':react-native-spinkit')
143 | compile project(':react-native-image-picker')
144 | compile project(':react-native-gesture-handler')
145 | compile project(':react-native-vector-icons')
146 | implementation fileTree(dir: "libs", include: ["*.jar"])
147 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
148 | implementation "com.facebook.react:react-native:+" // From node_modules
149 | }
150 |
151 | // Run this once to be able to run the application with BUCK
152 | // puts all compile dependencies into folder libs for BUCK to use
153 | task copyDownloadableDepsToLibs(type: Copy) {
154 | from configurations.compile
155 | into 'libs'
156 | }
157 |
--------------------------------------------------------------------------------
/ios/Validator.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 /* ValidatorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ValidatorTests.m */; };
16 | 07526D1B2A6A49CDB314005E /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 82E8CE5FE7BE44C291CA4FF8 /* MaterialCommunityIcons.ttf */; };
17 | 0D9F98FD47EC456D8C1D66C3 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B6A7A718B12648DDA2AEBF8B /* SimpleLineIcons.ttf */; };
18 | 1190F0CC525F4B04AE6E558E /* libRNRSA.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 797CD7D19D82439FA9899D95 /* libRNRSA.a */; };
19 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
20 | 128C0E58581E4FC79782F47E /* libTouchID.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A2DFAFE839D4697AF68599F /* libTouchID.a */; };
21 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
22 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
23 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
24 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
25 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
26 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
27 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
28 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
29 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
30 | 1CF8F908ECEB438EA647412E /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AFFA1B775D9A488B87CF9B0D /* libRNVectorIcons-tvOS.a */; };
31 | 1D937EEEADA24DC9B3CF0380 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4482DD9B1B8C4F0A8BF10FBC /* FontAwesome5_Regular.ttf */; };
32 | 1FDB3ADBEBFB4CAFB033CCB7 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 559416BEA0E7454BB889A295 /* AntDesign.ttf */; };
33 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
34 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
35 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
36 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
37 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
38 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
39 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
40 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
41 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
42 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
43 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
44 | 2DCD954D1E0B4F2C00145EB5 /* ValidatorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ValidatorTests.m */; };
45 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
46 | 3BFAED2DF3914E479E2F1B26 /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 971B57E3649645B2B959C252 /* libRNGestureHandler.a */; };
47 | 4FE7E5CE09174EC09ADED0C4 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A2D4D0BD7DC64610BA2F1EC2 /* libRNVectorIcons.a */; };
48 | 55CBB044598D421CBEBE0626 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C75BCA7C38CA4E12A6E0E9C0 /* Ionicons.ttf */; };
49 | 5A136C4684EE4834A59EB5B3 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 12AB28BA37AC40D5943FA09F /* Foundation.ttf */; };
50 | 5AC6DCDD6800447697884BF8 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 070285D96F04499E88EAD0A0 /* Feather.ttf */; };
51 | 5B1F0E18D484494295367A9F /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3FAACDE712EC4FD29A2481CE /* Entypo.ttf */; };
52 | 5EF60E64C86B4698888BC250 /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 712A6291CC444BD688FA6F7E /* libRNImagePicker.a */; };
53 | 6929943A1AB5407BB7CC3AC5 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6ABC2F19CC0A4B25AD01FFD2 /* EvilIcons.ttf */; };
54 | 6AB94DA5E4D24921A463BAF4 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A10FB11E4C1A42E2975F8CC7 /* Zocial.ttf */; };
55 | 6F8C9B2C74884B89BFD09198 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C336F8E665F843B5B13BA411 /* FontAwesome5_Brands.ttf */; };
56 | 78894E06A78A4D28AB1AFD6C /* libRNSpinkit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4AEA4A4F10864145A363B2B2 /* libRNSpinkit.a */; };
57 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
58 | 8ECF10ED0A9A4DA2A4D3C3EA /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1CC1EC234FDD4C4DAF94A401 /* Octicons.ttf */; };
59 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
60 | CA7C7787C98F4745A2B726E7 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0E0D6B08C850479C92195017 /* MaterialIcons.ttf */; };
61 | F3764CA4DF5A4EF2975C18D3 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DCC792B37B85484EB8DF04AC /* FontAwesome.ttf */; };
62 | F86CA75498E3414ABC8E4D78 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 37885B34F117488D9662977C /* FontAwesome5_Solid.ttf */; };
63 | /* End PBXBuildFile section */
64 |
65 | /* Begin PBXContainerItemProxy section */
66 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
67 | isa = PBXContainerItemProxy;
68 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
69 | proxyType = 2;
70 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
71 | remoteInfo = RCTActionSheet;
72 | };
73 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
74 | isa = PBXContainerItemProxy;
75 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
76 | proxyType = 2;
77 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
78 | remoteInfo = RCTGeolocation;
79 | };
80 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
81 | isa = PBXContainerItemProxy;
82 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
83 | proxyType = 2;
84 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
85 | remoteInfo = RCTImage;
86 | };
87 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
88 | isa = PBXContainerItemProxy;
89 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
90 | proxyType = 2;
91 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
92 | remoteInfo = RCTNetwork;
93 | };
94 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
95 | isa = PBXContainerItemProxy;
96 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
97 | proxyType = 2;
98 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
99 | remoteInfo = RCTVibration;
100 | };
101 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
102 | isa = PBXContainerItemProxy;
103 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
104 | proxyType = 1;
105 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
106 | remoteInfo = Validator;
107 | };
108 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
109 | isa = PBXContainerItemProxy;
110 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
111 | proxyType = 2;
112 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
113 | remoteInfo = RCTSettings;
114 | };
115 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
116 | isa = PBXContainerItemProxy;
117 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
118 | proxyType = 2;
119 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
120 | remoteInfo = RCTWebSocket;
121 | };
122 | 143028A821C51727003CE4D8 /* PBXContainerItemProxy */ = {
123 | isa = PBXContainerItemProxy;
124 | containerPortal = F07373D3FE4342D9B005F28F /* RNVectorIcons.xcodeproj */;
125 | proxyType = 2;
126 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
127 | remoteInfo = RNVectorIcons;
128 | };
129 | 143028AA21C51727003CE4D8 /* PBXContainerItemProxy */ = {
130 | isa = PBXContainerItemProxy;
131 | containerPortal = F07373D3FE4342D9B005F28F /* RNVectorIcons.xcodeproj */;
132 | proxyType = 2;
133 | remoteGlobalIDString = A39873CE1EA65EE60051E01A;
134 | remoteInfo = "RNVectorIcons-tvOS";
135 | };
136 | 1430291921C54811003CE4D8 /* PBXContainerItemProxy */ = {
137 | isa = PBXContainerItemProxy;
138 | containerPortal = D80669DCE55B41188ADF8FEB /* RNGestureHandler.xcodeproj */;
139 | proxyType = 2;
140 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
141 | remoteInfo = RNGestureHandler;
142 | };
143 | 145AAC1121CDE92700851783 /* PBXContainerItemProxy */ = {
144 | isa = PBXContainerItemProxy;
145 | containerPortal = C75442559CDB43D78553F58F /* RNRSA.xcodeproj */;
146 | proxyType = 2;
147 | remoteGlobalIDString = BF40FFBD1F05EC4000DC4E95;
148 | remoteInfo = RNRSA;
149 | };
150 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
151 | isa = PBXContainerItemProxy;
152 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
153 | proxyType = 2;
154 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
155 | remoteInfo = React;
156 | };
157 | 148A60EA21CA9005007E74B9 /* PBXContainerItemProxy */ = {
158 | isa = PBXContainerItemProxy;
159 | containerPortal = B3E4B21DAD6A46F99EAAB70F /* RNSpinkit.xcodeproj */;
160 | proxyType = 2;
161 | remoteGlobalIDString = D42CB3511B2538DE00FD0AE2;
162 | remoteInfo = RNSpinkit;
163 | };
164 | 148A60EC21CA9005007E74B9 /* PBXContainerItemProxy */ = {
165 | isa = PBXContainerItemProxy;
166 | containerPortal = B3E4B21DAD6A46F99EAAB70F /* RNSpinkit.xcodeproj */;
167 | proxyType = 2;
168 | remoteGlobalIDString = 641194871EC9FD4A00D4FC03;
169 | remoteInfo = "RNSpinkit-tvOS";
170 | };
171 | 148A60F121CA9005007E74B9 /* PBXContainerItemProxy */ = {
172 | isa = PBXContainerItemProxy;
173 | containerPortal = F26177AB4CC5475FB2368DE8 /* RNImagePicker.xcodeproj */;
174 | proxyType = 2;
175 | remoteGlobalIDString = 014A3B5C1C6CF33500B6D375;
176 | remoteInfo = RNImagePicker;
177 | };
178 | 148A60F621CA9005007E74B9 /* PBXContainerItemProxy */ = {
179 | isa = PBXContainerItemProxy;
180 | containerPortal = 71A56B466D7F401EBD93C844 /* TouchID.xcodeproj */;
181 | proxyType = 2;
182 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
183 | remoteInfo = TouchID;
184 | };
185 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
186 | isa = PBXContainerItemProxy;
187 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
188 | proxyType = 1;
189 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
190 | remoteInfo = "Validator-tvOS";
191 | };
192 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
193 | isa = PBXContainerItemProxy;
194 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
195 | proxyType = 2;
196 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
197 | remoteInfo = "RCTBlob-tvOS";
198 | };
199 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
200 | isa = PBXContainerItemProxy;
201 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
202 | proxyType = 2;
203 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
204 | remoteInfo = fishhook;
205 | };
206 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
207 | isa = PBXContainerItemProxy;
208 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
209 | proxyType = 2;
210 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
211 | remoteInfo = "fishhook-tvOS";
212 | };
213 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
214 | isa = PBXContainerItemProxy;
215 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
216 | proxyType = 2;
217 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
218 | remoteInfo = jsinspector;
219 | };
220 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
221 | isa = PBXContainerItemProxy;
222 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
223 | proxyType = 2;
224 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
225 | remoteInfo = "jsinspector-tvOS";
226 | };
227 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
228 | isa = PBXContainerItemProxy;
229 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
230 | proxyType = 2;
231 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
232 | remoteInfo = "third-party";
233 | };
234 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
235 | isa = PBXContainerItemProxy;
236 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
237 | proxyType = 2;
238 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
239 | remoteInfo = "third-party-tvOS";
240 | };
241 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
242 | isa = PBXContainerItemProxy;
243 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
244 | proxyType = 2;
245 | remoteGlobalIDString = 139D7E881E25C6D100323FB7;
246 | remoteInfo = "double-conversion";
247 | };
248 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
249 | isa = PBXContainerItemProxy;
250 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
251 | proxyType = 2;
252 | remoteGlobalIDString = 3D383D621EBD27B9005632C8;
253 | remoteInfo = "double-conversion-tvOS";
254 | };
255 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
256 | isa = PBXContainerItemProxy;
257 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
258 | proxyType = 2;
259 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
260 | remoteInfo = privatedata;
261 | };
262 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
263 | isa = PBXContainerItemProxy;
264 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
265 | proxyType = 2;
266 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
267 | remoteInfo = "privatedata-tvOS";
268 | };
269 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
270 | isa = PBXContainerItemProxy;
271 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
272 | proxyType = 2;
273 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
274 | remoteInfo = "RCTImage-tvOS";
275 | };
276 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
277 | isa = PBXContainerItemProxy;
278 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
279 | proxyType = 2;
280 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
281 | remoteInfo = "RCTLinking-tvOS";
282 | };
283 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
284 | isa = PBXContainerItemProxy;
285 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
286 | proxyType = 2;
287 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
288 | remoteInfo = "RCTNetwork-tvOS";
289 | };
290 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
291 | isa = PBXContainerItemProxy;
292 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
293 | proxyType = 2;
294 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
295 | remoteInfo = "RCTSettings-tvOS";
296 | };
297 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
298 | isa = PBXContainerItemProxy;
299 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
300 | proxyType = 2;
301 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
302 | remoteInfo = "RCTText-tvOS";
303 | };
304 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
305 | isa = PBXContainerItemProxy;
306 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
307 | proxyType = 2;
308 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
309 | remoteInfo = "RCTWebSocket-tvOS";
310 | };
311 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
312 | isa = PBXContainerItemProxy;
313 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
314 | proxyType = 2;
315 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
316 | remoteInfo = "React-tvOS";
317 | };
318 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
319 | isa = PBXContainerItemProxy;
320 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
321 | proxyType = 2;
322 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
323 | remoteInfo = yoga;
324 | };
325 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
326 | isa = PBXContainerItemProxy;
327 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
328 | proxyType = 2;
329 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
330 | remoteInfo = "yoga-tvOS";
331 | };
332 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
333 | isa = PBXContainerItemProxy;
334 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
335 | proxyType = 2;
336 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
337 | remoteInfo = cxxreact;
338 | };
339 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
340 | isa = PBXContainerItemProxy;
341 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
342 | proxyType = 2;
343 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
344 | remoteInfo = "cxxreact-tvOS";
345 | };
346 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
347 | isa = PBXContainerItemProxy;
348 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
349 | proxyType = 2;
350 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
351 | remoteInfo = jschelpers;
352 | };
353 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
354 | isa = PBXContainerItemProxy;
355 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
356 | proxyType = 2;
357 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
358 | remoteInfo = "jschelpers-tvOS";
359 | };
360 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
361 | isa = PBXContainerItemProxy;
362 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
363 | proxyType = 2;
364 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
365 | remoteInfo = RCTAnimation;
366 | };
367 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
368 | isa = PBXContainerItemProxy;
369 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
370 | proxyType = 2;
371 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
372 | remoteInfo = "RCTAnimation-tvOS";
373 | };
374 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
375 | isa = PBXContainerItemProxy;
376 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
377 | proxyType = 2;
378 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
379 | remoteInfo = RCTLinking;
380 | };
381 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
382 | isa = PBXContainerItemProxy;
383 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
384 | proxyType = 2;
385 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
386 | remoteInfo = RCTText;
387 | };
388 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
389 | isa = PBXContainerItemProxy;
390 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
391 | proxyType = 2;
392 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
393 | remoteInfo = RCTBlob;
394 | };
395 | /* End PBXContainerItemProxy section */
396 |
397 | /* Begin PBXFileReference section */
398 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
399 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
400 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
401 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
402 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
403 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
404 | 00E356EE1AD99517003FC87E /* ValidatorTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ValidatorTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
405 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
406 | 00E356F21AD99517003FC87E /* ValidatorTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ValidatorTests.m; sourceTree = ""; };
407 | 070285D96F04499E88EAD0A0 /* 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 = ""; };
408 | 0E0D6B08C850479C92195017 /* 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 = ""; };
409 | 12AB28BA37AC40D5943FA09F /* 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 = ""; };
410 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
411 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
412 | 13B07F961A680F5B00A75B9A /* Validator.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Validator.app; sourceTree = BUILT_PRODUCTS_DIR; };
413 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Validator/AppDelegate.h; sourceTree = ""; };
414 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Validator/AppDelegate.m; sourceTree = ""; };
415 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
416 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Validator/Images.xcassets; sourceTree = ""; };
417 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Validator/Info.plist; sourceTree = ""; };
418 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Validator/main.m; sourceTree = ""; };
419 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
420 | 1CC1EC234FDD4C4DAF94A401 /* 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 = ""; };
421 | 2D02E47B1E0B4A5D006451C7 /* Validator-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Validator-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
422 | 2D02E4901E0B4A5D006451C7 /* Validator-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Validator-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
423 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
424 | 37885B34F117488D9662977C /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; };
425 | 3FAACDE712EC4FD29A2481CE /* 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 = ""; };
426 | 4482DD9B1B8C4F0A8BF10FBC /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; };
427 | 4AEA4A4F10864145A363B2B2 /* libRNSpinkit.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSpinkit.a; sourceTree = ""; };
428 | 559416BEA0E7454BB889A295 /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; };
429 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
430 | 6ABC2F19CC0A4B25AD01FFD2 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; };
431 | 712A6291CC444BD688FA6F7E /* libRNImagePicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNImagePicker.a; sourceTree = ""; };
432 | 71A56B466D7F401EBD93C844 /* TouchID.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = TouchID.xcodeproj; path = "../node_modules/react-native-touch-id/TouchID.xcodeproj"; sourceTree = ""; };
433 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
434 | 797CD7D19D82439FA9899D95 /* libRNRSA.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNRSA.a; sourceTree = ""; };
435 | 7A2DFAFE839D4697AF68599F /* libTouchID.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libTouchID.a; sourceTree = ""; };
436 | 82E8CE5FE7BE44C291CA4FF8 /* 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 = ""; };
437 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
438 | 971B57E3649645B2B959C252 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNGestureHandler.a; sourceTree = ""; };
439 | A10FB11E4C1A42E2975F8CC7 /* 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 = ""; };
440 | A2D4D0BD7DC64610BA2F1EC2 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; };
441 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
442 | AFFA1B775D9A488B87CF9B0D /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; };
443 | B3E4B21DAD6A46F99EAAB70F /* RNSpinkit.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSpinkit.xcodeproj; path = "../node_modules/react-native-spinkit/ios/RNSpinkit.xcodeproj"; sourceTree = ""; };
444 | B6A7A718B12648DDA2AEBF8B /* 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 = ""; };
445 | C336F8E665F843B5B13BA411 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; };
446 | C75442559CDB43D78553F58F /* RNRSA.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNRSA.xcodeproj; path = "../node_modules/react-native-rsa-native/ios/RNRSA.xcodeproj"; sourceTree = ""; };
447 | C75BCA7C38CA4E12A6E0E9C0 /* 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 = ""; };
448 | D80669DCE55B41188ADF8FEB /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNGestureHandler.xcodeproj; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = ""; };
449 | DCC792B37B85484EB8DF04AC /* 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 = ""; };
450 | F07373D3FE4342D9B005F28F /* 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 = ""; };
451 | F26177AB4CC5475FB2368DE8 /* RNImagePicker.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNImagePicker.xcodeproj; path = "../node_modules/react-native-image-picker/ios/RNImagePicker.xcodeproj"; sourceTree = ""; };
452 | /* End PBXFileReference section */
453 |
454 | /* Begin PBXFrameworksBuildPhase section */
455 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
456 | isa = PBXFrameworksBuildPhase;
457 | buildActionMask = 2147483647;
458 | files = (
459 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
460 | );
461 | runOnlyForDeploymentPostprocessing = 0;
462 | };
463 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
464 | isa = PBXFrameworksBuildPhase;
465 | buildActionMask = 2147483647;
466 | files = (
467 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
468 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */,
469 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
470 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
471 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
472 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
473 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
474 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
475 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
476 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
477 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
478 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
479 | 4FE7E5CE09174EC09ADED0C4 /* libRNVectorIcons.a in Frameworks */,
480 | 3BFAED2DF3914E479E2F1B26 /* libRNGestureHandler.a in Frameworks */,
481 | 5EF60E64C86B4698888BC250 /* libRNImagePicker.a in Frameworks */,
482 | 78894E06A78A4D28AB1AFD6C /* libRNSpinkit.a in Frameworks */,
483 | 128C0E58581E4FC79782F47E /* libTouchID.a in Frameworks */,
484 | 1190F0CC525F4B04AE6E558E /* libRNRSA.a in Frameworks */,
485 | );
486 | runOnlyForDeploymentPostprocessing = 0;
487 | };
488 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
489 | isa = PBXFrameworksBuildPhase;
490 | buildActionMask = 2147483647;
491 | files = (
492 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
493 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
494 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
495 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
496 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
497 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
498 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
499 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
500 | 1CF8F908ECEB438EA647412E /* libRNVectorIcons-tvOS.a in Frameworks */,
501 | );
502 | runOnlyForDeploymentPostprocessing = 0;
503 | };
504 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
505 | isa = PBXFrameworksBuildPhase;
506 | buildActionMask = 2147483647;
507 | files = (
508 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
509 | );
510 | runOnlyForDeploymentPostprocessing = 0;
511 | };
512 | /* End PBXFrameworksBuildPhase section */
513 |
514 | /* Begin PBXGroup section */
515 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
516 | isa = PBXGroup;
517 | children = (
518 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
519 | );
520 | name = Products;
521 | sourceTree = "";
522 | };
523 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
524 | isa = PBXGroup;
525 | children = (
526 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
527 | );
528 | name = Products;
529 | sourceTree = "";
530 | };
531 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
532 | isa = PBXGroup;
533 | children = (
534 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
535 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
536 | );
537 | name = Products;
538 | sourceTree = "";
539 | };
540 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
541 | isa = PBXGroup;
542 | children = (
543 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
544 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
545 | );
546 | name = Products;
547 | sourceTree = "";
548 | };
549 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
550 | isa = PBXGroup;
551 | children = (
552 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
553 | );
554 | name = Products;
555 | sourceTree = "";
556 | };
557 | 00E356EF1AD99517003FC87E /* ValidatorTests */ = {
558 | isa = PBXGroup;
559 | children = (
560 | 00E356F21AD99517003FC87E /* ValidatorTests.m */,
561 | 00E356F01AD99517003FC87E /* Supporting Files */,
562 | );
563 | path = ValidatorTests;
564 | sourceTree = "";
565 | };
566 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
567 | isa = PBXGroup;
568 | children = (
569 | 00E356F11AD99517003FC87E /* Info.plist */,
570 | );
571 | name = "Supporting Files";
572 | sourceTree = "";
573 | };
574 | 139105B71AF99BAD00B5F7CC /* Products */ = {
575 | isa = PBXGroup;
576 | children = (
577 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
578 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
579 | );
580 | name = Products;
581 | sourceTree = "";
582 | };
583 | 139FDEE71B06529A00C62182 /* Products */ = {
584 | isa = PBXGroup;
585 | children = (
586 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
587 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
588 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
589 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
590 | );
591 | name = Products;
592 | sourceTree = "";
593 | };
594 | 13B07FAE1A68108700A75B9A /* Validator */ = {
595 | isa = PBXGroup;
596 | children = (
597 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
598 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
599 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
600 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
601 | 13B07FB61A68108700A75B9A /* Info.plist */,
602 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
603 | 13B07FB71A68108700A75B9A /* main.m */,
604 | );
605 | name = Validator;
606 | sourceTree = "";
607 | };
608 | 1430287E21C51721003CE4D8 /* Recovered References */ = {
609 | isa = PBXGroup;
610 | children = (
611 | A2D4D0BD7DC64610BA2F1EC2 /* libRNVectorIcons.a */,
612 | AFFA1B775D9A488B87CF9B0D /* libRNVectorIcons-tvOS.a */,
613 | 971B57E3649645B2B959C252 /* libRNGestureHandler.a */,
614 | 712A6291CC444BD688FA6F7E /* libRNImagePicker.a */,
615 | 4AEA4A4F10864145A363B2B2 /* libRNSpinkit.a */,
616 | 7A2DFAFE839D4697AF68599F /* libTouchID.a */,
617 | 797CD7D19D82439FA9899D95 /* libRNRSA.a */,
618 | );
619 | name = "Recovered References";
620 | sourceTree = "";
621 | };
622 | 143028A421C51724003CE4D8 /* Products */ = {
623 | isa = PBXGroup;
624 | children = (
625 | 143028A921C51727003CE4D8 /* libRNVectorIcons.a */,
626 | 143028AB21C51727003CE4D8 /* libRNVectorIcons-tvOS.a */,
627 | );
628 | name = Products;
629 | sourceTree = "";
630 | };
631 | 1430291621C54811003CE4D8 /* Products */ = {
632 | isa = PBXGroup;
633 | children = (
634 | 1430291A21C54811003CE4D8 /* libRNGestureHandler.a */,
635 | );
636 | name = Products;
637 | sourceTree = "";
638 | };
639 | 145AAC0E21CDE92700851783 /* Products */ = {
640 | isa = PBXGroup;
641 | children = (
642 | 145AAC1221CDE92700851783 /* libRNRSA.a */,
643 | );
644 | name = Products;
645 | sourceTree = "";
646 | };
647 | 146834001AC3E56700842450 /* Products */ = {
648 | isa = PBXGroup;
649 | children = (
650 | 146834041AC3E56700842450 /* libReact.a */,
651 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
652 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
653 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
654 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
655 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
656 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
657 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
658 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
659 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
660 | 2DF0FFE32056DD460020B375 /* libthird-party.a */,
661 | 2DF0FFE52056DD460020B375 /* libthird-party.a */,
662 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
663 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
664 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
665 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
666 | );
667 | name = Products;
668 | sourceTree = "";
669 | };
670 | 148A60E621CA9005007E74B9 /* Products */ = {
671 | isa = PBXGroup;
672 | children = (
673 | 148A60EB21CA9005007E74B9 /* libRNSpinkit.a */,
674 | 148A60ED21CA9005007E74B9 /* libRNSpinkit.a */,
675 | );
676 | name = Products;
677 | sourceTree = "";
678 | };
679 | 148A60EE21CA9005007E74B9 /* Products */ = {
680 | isa = PBXGroup;
681 | children = (
682 | 148A60F221CA9005007E74B9 /* libRNImagePicker.a */,
683 | );
684 | name = Products;
685 | sourceTree = "";
686 | };
687 | 148A60F321CA9005007E74B9 /* Products */ = {
688 | isa = PBXGroup;
689 | children = (
690 | 148A60F721CA9005007E74B9 /* libTouchID.a */,
691 | );
692 | name = Products;
693 | sourceTree = "";
694 | };
695 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
696 | isa = PBXGroup;
697 | children = (
698 | 2D16E6891FA4F8E400B85C8A /* libReact.a */,
699 | );
700 | name = Frameworks;
701 | sourceTree = "";
702 | };
703 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
704 | isa = PBXGroup;
705 | children = (
706 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
707 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
708 | );
709 | name = Products;
710 | sourceTree = "";
711 | };
712 | 78C398B11ACF4ADC00677621 /* Products */ = {
713 | isa = PBXGroup;
714 | children = (
715 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
716 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
717 | );
718 | name = Products;
719 | sourceTree = "";
720 | };
721 | 7D03F6EED73648C2950B7F0F /* Resources */ = {
722 | isa = PBXGroup;
723 | children = (
724 | 559416BEA0E7454BB889A295 /* AntDesign.ttf */,
725 | 3FAACDE712EC4FD29A2481CE /* Entypo.ttf */,
726 | 6ABC2F19CC0A4B25AD01FFD2 /* EvilIcons.ttf */,
727 | 070285D96F04499E88EAD0A0 /* Feather.ttf */,
728 | DCC792B37B85484EB8DF04AC /* FontAwesome.ttf */,
729 | C336F8E665F843B5B13BA411 /* FontAwesome5_Brands.ttf */,
730 | 4482DD9B1B8C4F0A8BF10FBC /* FontAwesome5_Regular.ttf */,
731 | 37885B34F117488D9662977C /* FontAwesome5_Solid.ttf */,
732 | 12AB28BA37AC40D5943FA09F /* Foundation.ttf */,
733 | C75BCA7C38CA4E12A6E0E9C0 /* Ionicons.ttf */,
734 | 82E8CE5FE7BE44C291CA4FF8 /* MaterialCommunityIcons.ttf */,
735 | 0E0D6B08C850479C92195017 /* MaterialIcons.ttf */,
736 | 1CC1EC234FDD4C4DAF94A401 /* Octicons.ttf */,
737 | B6A7A718B12648DDA2AEBF8B /* SimpleLineIcons.ttf */,
738 | A10FB11E4C1A42E2975F8CC7 /* Zocial.ttf */,
739 | );
740 | name = Resources;
741 | sourceTree = "";
742 | };
743 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
744 | isa = PBXGroup;
745 | children = (
746 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
747 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
748 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
749 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
750 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
751 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
752 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
753 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
754 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
755 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
756 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
757 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
758 | F07373D3FE4342D9B005F28F /* RNVectorIcons.xcodeproj */,
759 | D80669DCE55B41188ADF8FEB /* RNGestureHandler.xcodeproj */,
760 | F26177AB4CC5475FB2368DE8 /* RNImagePicker.xcodeproj */,
761 | B3E4B21DAD6A46F99EAAB70F /* RNSpinkit.xcodeproj */,
762 | 71A56B466D7F401EBD93C844 /* TouchID.xcodeproj */,
763 | C75442559CDB43D78553F58F /* RNRSA.xcodeproj */,
764 | );
765 | name = Libraries;
766 | sourceTree = "";
767 | };
768 | 832341B11AAA6A8300B99B32 /* Products */ = {
769 | isa = PBXGroup;
770 | children = (
771 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
772 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
773 | );
774 | name = Products;
775 | sourceTree = "";
776 | };
777 | 83CBB9F61A601CBA00E9B192 = {
778 | isa = PBXGroup;
779 | children = (
780 | 13B07FAE1A68108700A75B9A /* Validator */,
781 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
782 | 00E356EF1AD99517003FC87E /* ValidatorTests */,
783 | 83CBBA001A601CBA00E9B192 /* Products */,
784 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
785 | 7D03F6EED73648C2950B7F0F /* Resources */,
786 | 1430287E21C51721003CE4D8 /* Recovered References */,
787 | );
788 | indentWidth = 2;
789 | sourceTree = "";
790 | tabWidth = 2;
791 | usesTabs = 0;
792 | };
793 | 83CBBA001A601CBA00E9B192 /* Products */ = {
794 | isa = PBXGroup;
795 | children = (
796 | 13B07F961A680F5B00A75B9A /* Validator.app */,
797 | 00E356EE1AD99517003FC87E /* ValidatorTests.xctest */,
798 | 2D02E47B1E0B4A5D006451C7 /* Validator-tvOS.app */,
799 | 2D02E4901E0B4A5D006451C7 /* Validator-tvOSTests.xctest */,
800 | );
801 | name = Products;
802 | sourceTree = "";
803 | };
804 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
805 | isa = PBXGroup;
806 | children = (
807 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
808 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
809 | );
810 | name = Products;
811 | sourceTree = "";
812 | };
813 | /* End PBXGroup section */
814 |
815 | /* Begin PBXNativeTarget section */
816 | 00E356ED1AD99517003FC87E /* ValidatorTests */ = {
817 | isa = PBXNativeTarget;
818 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ValidatorTests" */;
819 | buildPhases = (
820 | 00E356EA1AD99517003FC87E /* Sources */,
821 | 00E356EB1AD99517003FC87E /* Frameworks */,
822 | 00E356EC1AD99517003FC87E /* Resources */,
823 | );
824 | buildRules = (
825 | );
826 | dependencies = (
827 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
828 | );
829 | name = ValidatorTests;
830 | productName = ValidatorTests;
831 | productReference = 00E356EE1AD99517003FC87E /* ValidatorTests.xctest */;
832 | productType = "com.apple.product-type.bundle.unit-test";
833 | };
834 | 13B07F861A680F5B00A75B9A /* Validator */ = {
835 | isa = PBXNativeTarget;
836 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Validator" */;
837 | buildPhases = (
838 | 13B07F871A680F5B00A75B9A /* Sources */,
839 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
840 | 13B07F8E1A680F5B00A75B9A /* Resources */,
841 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
842 | );
843 | buildRules = (
844 | );
845 | dependencies = (
846 | );
847 | name = Validator;
848 | productName = "Hello World";
849 | productReference = 13B07F961A680F5B00A75B9A /* Validator.app */;
850 | productType = "com.apple.product-type.application";
851 | };
852 | 2D02E47A1E0B4A5D006451C7 /* Validator-tvOS */ = {
853 | isa = PBXNativeTarget;
854 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Validator-tvOS" */;
855 | buildPhases = (
856 | 2D02E4771E0B4A5D006451C7 /* Sources */,
857 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
858 | 2D02E4791E0B4A5D006451C7 /* Resources */,
859 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
860 | );
861 | buildRules = (
862 | );
863 | dependencies = (
864 | );
865 | name = "Validator-tvOS";
866 | productName = "Validator-tvOS";
867 | productReference = 2D02E47B1E0B4A5D006451C7 /* Validator-tvOS.app */;
868 | productType = "com.apple.product-type.application";
869 | };
870 | 2D02E48F1E0B4A5D006451C7 /* Validator-tvOSTests */ = {
871 | isa = PBXNativeTarget;
872 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Validator-tvOSTests" */;
873 | buildPhases = (
874 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
875 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
876 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
877 | );
878 | buildRules = (
879 | );
880 | dependencies = (
881 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
882 | );
883 | name = "Validator-tvOSTests";
884 | productName = "Validator-tvOSTests";
885 | productReference = 2D02E4901E0B4A5D006451C7 /* Validator-tvOSTests.xctest */;
886 | productType = "com.apple.product-type.bundle.unit-test";
887 | };
888 | /* End PBXNativeTarget section */
889 |
890 | /* Begin PBXProject section */
891 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
892 | isa = PBXProject;
893 | attributes = {
894 | LastUpgradeCheck = 940;
895 | ORGANIZATIONNAME = Facebook;
896 | TargetAttributes = {
897 | 00E356ED1AD99517003FC87E = {
898 | CreatedOnToolsVersion = 6.2;
899 | DevelopmentTeam = 8Y2J55823C;
900 | TestTargetID = 13B07F861A680F5B00A75B9A;
901 | };
902 | 13B07F861A680F5B00A75B9A = {
903 | DevelopmentTeam = 8Y2J55823C;
904 | };
905 | 2D02E47A1E0B4A5D006451C7 = {
906 | CreatedOnToolsVersion = 8.2.1;
907 | DevelopmentTeam = 8Y2J55823C;
908 | ProvisioningStyle = Automatic;
909 | };
910 | 2D02E48F1E0B4A5D006451C7 = {
911 | CreatedOnToolsVersion = 8.2.1;
912 | DevelopmentTeam = 8Y2J55823C;
913 | ProvisioningStyle = Automatic;
914 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
915 | };
916 | };
917 | };
918 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Validator" */;
919 | compatibilityVersion = "Xcode 3.2";
920 | developmentRegion = English;
921 | hasScannedForEncodings = 0;
922 | knownRegions = (
923 | en,
924 | Base,
925 | );
926 | mainGroup = 83CBB9F61A601CBA00E9B192;
927 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
928 | projectDirPath = "";
929 | projectReferences = (
930 | {
931 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
932 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
933 | },
934 | {
935 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
936 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
937 | },
938 | {
939 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
940 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
941 | },
942 | {
943 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
944 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
945 | },
946 | {
947 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
948 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
949 | },
950 | {
951 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
952 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
953 | },
954 | {
955 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
956 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
957 | },
958 | {
959 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
960 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
961 | },
962 | {
963 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
964 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
965 | },
966 | {
967 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
968 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
969 | },
970 | {
971 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
972 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
973 | },
974 | {
975 | ProductGroup = 146834001AC3E56700842450 /* Products */;
976 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
977 | },
978 | {
979 | ProductGroup = 1430291621C54811003CE4D8 /* Products */;
980 | ProjectRef = D80669DCE55B41188ADF8FEB /* RNGestureHandler.xcodeproj */;
981 | },
982 | {
983 | ProductGroup = 148A60EE21CA9005007E74B9 /* Products */;
984 | ProjectRef = F26177AB4CC5475FB2368DE8 /* RNImagePicker.xcodeproj */;
985 | },
986 | {
987 | ProductGroup = 145AAC0E21CDE92700851783 /* Products */;
988 | ProjectRef = C75442559CDB43D78553F58F /* RNRSA.xcodeproj */;
989 | },
990 | {
991 | ProductGroup = 148A60E621CA9005007E74B9 /* Products */;
992 | ProjectRef = B3E4B21DAD6A46F99EAAB70F /* RNSpinkit.xcodeproj */;
993 | },
994 | {
995 | ProductGroup = 143028A421C51724003CE4D8 /* Products */;
996 | ProjectRef = F07373D3FE4342D9B005F28F /* RNVectorIcons.xcodeproj */;
997 | },
998 | {
999 | ProductGroup = 148A60F321CA9005007E74B9 /* Products */;
1000 | ProjectRef = 71A56B466D7F401EBD93C844 /* TouchID.xcodeproj */;
1001 | },
1002 | );
1003 | projectRoot = "";
1004 | targets = (
1005 | 13B07F861A680F5B00A75B9A /* Validator */,
1006 | 00E356ED1AD99517003FC87E /* ValidatorTests */,
1007 | 2D02E47A1E0B4A5D006451C7 /* Validator-tvOS */,
1008 | 2D02E48F1E0B4A5D006451C7 /* Validator-tvOSTests */,
1009 | );
1010 | };
1011 | /* End PBXProject section */
1012 |
1013 | /* Begin PBXReferenceProxy section */
1014 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
1015 | isa = PBXReferenceProxy;
1016 | fileType = archive.ar;
1017 | path = libRCTActionSheet.a;
1018 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
1019 | sourceTree = BUILT_PRODUCTS_DIR;
1020 | };
1021 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
1022 | isa = PBXReferenceProxy;
1023 | fileType = archive.ar;
1024 | path = libRCTGeolocation.a;
1025 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
1026 | sourceTree = BUILT_PRODUCTS_DIR;
1027 | };
1028 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
1029 | isa = PBXReferenceProxy;
1030 | fileType = archive.ar;
1031 | path = libRCTImage.a;
1032 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
1033 | sourceTree = BUILT_PRODUCTS_DIR;
1034 | };
1035 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
1036 | isa = PBXReferenceProxy;
1037 | fileType = archive.ar;
1038 | path = libRCTNetwork.a;
1039 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
1040 | sourceTree = BUILT_PRODUCTS_DIR;
1041 | };
1042 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
1043 | isa = PBXReferenceProxy;
1044 | fileType = archive.ar;
1045 | path = libRCTVibration.a;
1046 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
1047 | sourceTree = BUILT_PRODUCTS_DIR;
1048 | };
1049 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
1050 | isa = PBXReferenceProxy;
1051 | fileType = archive.ar;
1052 | path = libRCTSettings.a;
1053 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
1054 | sourceTree = BUILT_PRODUCTS_DIR;
1055 | };
1056 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
1057 | isa = PBXReferenceProxy;
1058 | fileType = archive.ar;
1059 | path = libRCTWebSocket.a;
1060 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
1061 | sourceTree = BUILT_PRODUCTS_DIR;
1062 | };
1063 | 143028A921C51727003CE4D8 /* libRNVectorIcons.a */ = {
1064 | isa = PBXReferenceProxy;
1065 | fileType = archive.ar;
1066 | path = libRNVectorIcons.a;
1067 | remoteRef = 143028A821C51727003CE4D8 /* PBXContainerItemProxy */;
1068 | sourceTree = BUILT_PRODUCTS_DIR;
1069 | };
1070 | 143028AB21C51727003CE4D8 /* libRNVectorIcons-tvOS.a */ = {
1071 | isa = PBXReferenceProxy;
1072 | fileType = archive.ar;
1073 | path = "libRNVectorIcons-tvOS.a";
1074 | remoteRef = 143028AA21C51727003CE4D8 /* PBXContainerItemProxy */;
1075 | sourceTree = BUILT_PRODUCTS_DIR;
1076 | };
1077 | 1430291A21C54811003CE4D8 /* libRNGestureHandler.a */ = {
1078 | isa = PBXReferenceProxy;
1079 | fileType = archive.ar;
1080 | path = libRNGestureHandler.a;
1081 | remoteRef = 1430291921C54811003CE4D8 /* PBXContainerItemProxy */;
1082 | sourceTree = BUILT_PRODUCTS_DIR;
1083 | };
1084 | 145AAC1221CDE92700851783 /* libRNRSA.a */ = {
1085 | isa = PBXReferenceProxy;
1086 | fileType = archive.ar;
1087 | path = libRNRSA.a;
1088 | remoteRef = 145AAC1121CDE92700851783 /* PBXContainerItemProxy */;
1089 | sourceTree = BUILT_PRODUCTS_DIR;
1090 | };
1091 | 146834041AC3E56700842450 /* libReact.a */ = {
1092 | isa = PBXReferenceProxy;
1093 | fileType = archive.ar;
1094 | path = libReact.a;
1095 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
1096 | sourceTree = BUILT_PRODUCTS_DIR;
1097 | };
1098 | 148A60EB21CA9005007E74B9 /* libRNSpinkit.a */ = {
1099 | isa = PBXReferenceProxy;
1100 | fileType = archive.ar;
1101 | path = libRNSpinkit.a;
1102 | remoteRef = 148A60EA21CA9005007E74B9 /* PBXContainerItemProxy */;
1103 | sourceTree = BUILT_PRODUCTS_DIR;
1104 | };
1105 | 148A60ED21CA9005007E74B9 /* libRNSpinkit.a */ = {
1106 | isa = PBXReferenceProxy;
1107 | fileType = archive.ar;
1108 | path = libRNSpinkit.a;
1109 | remoteRef = 148A60EC21CA9005007E74B9 /* PBXContainerItemProxy */;
1110 | sourceTree = BUILT_PRODUCTS_DIR;
1111 | };
1112 | 148A60F221CA9005007E74B9 /* libRNImagePicker.a */ = {
1113 | isa = PBXReferenceProxy;
1114 | fileType = archive.ar;
1115 | path = libRNImagePicker.a;
1116 | remoteRef = 148A60F121CA9005007E74B9 /* PBXContainerItemProxy */;
1117 | sourceTree = BUILT_PRODUCTS_DIR;
1118 | };
1119 | 148A60F721CA9005007E74B9 /* libTouchID.a */ = {
1120 | isa = PBXReferenceProxy;
1121 | fileType = archive.ar;
1122 | path = libTouchID.a;
1123 | remoteRef = 148A60F621CA9005007E74B9 /* PBXContainerItemProxy */;
1124 | sourceTree = BUILT_PRODUCTS_DIR;
1125 | };
1126 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
1127 | isa = PBXReferenceProxy;
1128 | fileType = archive.ar;
1129 | path = "libRCTBlob-tvOS.a";
1130 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
1131 | sourceTree = BUILT_PRODUCTS_DIR;
1132 | };
1133 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
1134 | isa = PBXReferenceProxy;
1135 | fileType = archive.ar;
1136 | path = libfishhook.a;
1137 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
1138 | sourceTree = BUILT_PRODUCTS_DIR;
1139 | };
1140 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
1141 | isa = PBXReferenceProxy;
1142 | fileType = archive.ar;
1143 | path = "libfishhook-tvOS.a";
1144 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
1145 | sourceTree = BUILT_PRODUCTS_DIR;
1146 | };
1147 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
1148 | isa = PBXReferenceProxy;
1149 | fileType = archive.ar;
1150 | path = libjsinspector.a;
1151 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
1152 | sourceTree = BUILT_PRODUCTS_DIR;
1153 | };
1154 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
1155 | isa = PBXReferenceProxy;
1156 | fileType = archive.ar;
1157 | path = "libjsinspector-tvOS.a";
1158 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
1159 | sourceTree = BUILT_PRODUCTS_DIR;
1160 | };
1161 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
1162 | isa = PBXReferenceProxy;
1163 | fileType = archive.ar;
1164 | path = "libthird-party.a";
1165 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
1166 | sourceTree = BUILT_PRODUCTS_DIR;
1167 | };
1168 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
1169 | isa = PBXReferenceProxy;
1170 | fileType = archive.ar;
1171 | path = "libthird-party.a";
1172 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
1173 | sourceTree = BUILT_PRODUCTS_DIR;
1174 | };
1175 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
1176 | isa = PBXReferenceProxy;
1177 | fileType = archive.ar;
1178 | path = "libdouble-conversion.a";
1179 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
1180 | sourceTree = BUILT_PRODUCTS_DIR;
1181 | };
1182 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
1183 | isa = PBXReferenceProxy;
1184 | fileType = archive.ar;
1185 | path = "libdouble-conversion.a";
1186 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
1187 | sourceTree = BUILT_PRODUCTS_DIR;
1188 | };
1189 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
1190 | isa = PBXReferenceProxy;
1191 | fileType = archive.ar;
1192 | path = libprivatedata.a;
1193 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
1194 | sourceTree = BUILT_PRODUCTS_DIR;
1195 | };
1196 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
1197 | isa = PBXReferenceProxy;
1198 | fileType = archive.ar;
1199 | path = "libprivatedata-tvOS.a";
1200 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
1201 | sourceTree = BUILT_PRODUCTS_DIR;
1202 | };
1203 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
1204 | isa = PBXReferenceProxy;
1205 | fileType = archive.ar;
1206 | path = "libRCTImage-tvOS.a";
1207 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
1208 | sourceTree = BUILT_PRODUCTS_DIR;
1209 | };
1210 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
1211 | isa = PBXReferenceProxy;
1212 | fileType = archive.ar;
1213 | path = "libRCTLinking-tvOS.a";
1214 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
1215 | sourceTree = BUILT_PRODUCTS_DIR;
1216 | };
1217 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
1218 | isa = PBXReferenceProxy;
1219 | fileType = archive.ar;
1220 | path = "libRCTNetwork-tvOS.a";
1221 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
1222 | sourceTree = BUILT_PRODUCTS_DIR;
1223 | };
1224 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
1225 | isa = PBXReferenceProxy;
1226 | fileType = archive.ar;
1227 | path = "libRCTSettings-tvOS.a";
1228 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
1229 | sourceTree = BUILT_PRODUCTS_DIR;
1230 | };
1231 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
1232 | isa = PBXReferenceProxy;
1233 | fileType = archive.ar;
1234 | path = "libRCTText-tvOS.a";
1235 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
1236 | sourceTree = BUILT_PRODUCTS_DIR;
1237 | };
1238 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
1239 | isa = PBXReferenceProxy;
1240 | fileType = archive.ar;
1241 | path = "libRCTWebSocket-tvOS.a";
1242 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
1243 | sourceTree = BUILT_PRODUCTS_DIR;
1244 | };
1245 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
1246 | isa = PBXReferenceProxy;
1247 | fileType = archive.ar;
1248 | path = libReact.a;
1249 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
1250 | sourceTree = BUILT_PRODUCTS_DIR;
1251 | };
1252 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
1253 | isa = PBXReferenceProxy;
1254 | fileType = archive.ar;
1255 | path = libyoga.a;
1256 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
1257 | sourceTree = BUILT_PRODUCTS_DIR;
1258 | };
1259 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
1260 | isa = PBXReferenceProxy;
1261 | fileType = archive.ar;
1262 | path = libyoga.a;
1263 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
1264 | sourceTree = BUILT_PRODUCTS_DIR;
1265 | };
1266 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
1267 | isa = PBXReferenceProxy;
1268 | fileType = archive.ar;
1269 | path = libcxxreact.a;
1270 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
1271 | sourceTree = BUILT_PRODUCTS_DIR;
1272 | };
1273 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
1274 | isa = PBXReferenceProxy;
1275 | fileType = archive.ar;
1276 | path = libcxxreact.a;
1277 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
1278 | sourceTree = BUILT_PRODUCTS_DIR;
1279 | };
1280 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
1281 | isa = PBXReferenceProxy;
1282 | fileType = archive.ar;
1283 | path = libjschelpers.a;
1284 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
1285 | sourceTree = BUILT_PRODUCTS_DIR;
1286 | };
1287 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
1288 | isa = PBXReferenceProxy;
1289 | fileType = archive.ar;
1290 | path = libjschelpers.a;
1291 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
1292 | sourceTree = BUILT_PRODUCTS_DIR;
1293 | };
1294 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1295 | isa = PBXReferenceProxy;
1296 | fileType = archive.ar;
1297 | path = libRCTAnimation.a;
1298 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1299 | sourceTree = BUILT_PRODUCTS_DIR;
1300 | };
1301 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1302 | isa = PBXReferenceProxy;
1303 | fileType = archive.ar;
1304 | path = libRCTAnimation.a;
1305 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1306 | sourceTree = BUILT_PRODUCTS_DIR;
1307 | };
1308 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1309 | isa = PBXReferenceProxy;
1310 | fileType = archive.ar;
1311 | path = libRCTLinking.a;
1312 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1313 | sourceTree = BUILT_PRODUCTS_DIR;
1314 | };
1315 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1316 | isa = PBXReferenceProxy;
1317 | fileType = archive.ar;
1318 | path = libRCTText.a;
1319 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1320 | sourceTree = BUILT_PRODUCTS_DIR;
1321 | };
1322 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1323 | isa = PBXReferenceProxy;
1324 | fileType = archive.ar;
1325 | path = libRCTBlob.a;
1326 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1327 | sourceTree = BUILT_PRODUCTS_DIR;
1328 | };
1329 | /* End PBXReferenceProxy section */
1330 |
1331 | /* Begin PBXResourcesBuildPhase section */
1332 | 00E356EC1AD99517003FC87E /* Resources */ = {
1333 | isa = PBXResourcesBuildPhase;
1334 | buildActionMask = 2147483647;
1335 | files = (
1336 | );
1337 | runOnlyForDeploymentPostprocessing = 0;
1338 | };
1339 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1340 | isa = PBXResourcesBuildPhase;
1341 | buildActionMask = 2147483647;
1342 | files = (
1343 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1344 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1345 | 1FDB3ADBEBFB4CAFB033CCB7 /* AntDesign.ttf in Resources */,
1346 | 5B1F0E18D484494295367A9F /* Entypo.ttf in Resources */,
1347 | 6929943A1AB5407BB7CC3AC5 /* EvilIcons.ttf in Resources */,
1348 | 5AC6DCDD6800447697884BF8 /* Feather.ttf in Resources */,
1349 | F3764CA4DF5A4EF2975C18D3 /* FontAwesome.ttf in Resources */,
1350 | 6F8C9B2C74884B89BFD09198 /* FontAwesome5_Brands.ttf in Resources */,
1351 | 1D937EEEADA24DC9B3CF0380 /* FontAwesome5_Regular.ttf in Resources */,
1352 | F86CA75498E3414ABC8E4D78 /* FontAwesome5_Solid.ttf in Resources */,
1353 | 5A136C4684EE4834A59EB5B3 /* Foundation.ttf in Resources */,
1354 | 55CBB044598D421CBEBE0626 /* Ionicons.ttf in Resources */,
1355 | 07526D1B2A6A49CDB314005E /* MaterialCommunityIcons.ttf in Resources */,
1356 | CA7C7787C98F4745A2B726E7 /* MaterialIcons.ttf in Resources */,
1357 | 8ECF10ED0A9A4DA2A4D3C3EA /* Octicons.ttf in Resources */,
1358 | 0D9F98FD47EC456D8C1D66C3 /* SimpleLineIcons.ttf in Resources */,
1359 | 6AB94DA5E4D24921A463BAF4 /* Zocial.ttf in Resources */,
1360 | );
1361 | runOnlyForDeploymentPostprocessing = 0;
1362 | };
1363 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1364 | isa = PBXResourcesBuildPhase;
1365 | buildActionMask = 2147483647;
1366 | files = (
1367 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1368 | );
1369 | runOnlyForDeploymentPostprocessing = 0;
1370 | };
1371 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1372 | isa = PBXResourcesBuildPhase;
1373 | buildActionMask = 2147483647;
1374 | files = (
1375 | );
1376 | runOnlyForDeploymentPostprocessing = 0;
1377 | };
1378 | /* End PBXResourcesBuildPhase section */
1379 |
1380 | /* Begin PBXShellScriptBuildPhase section */
1381 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1382 | isa = PBXShellScriptBuildPhase;
1383 | buildActionMask = 2147483647;
1384 | files = (
1385 | );
1386 | inputPaths = (
1387 | );
1388 | name = "Bundle React Native code and images";
1389 | outputPaths = (
1390 | );
1391 | runOnlyForDeploymentPostprocessing = 0;
1392 | shellPath = /bin/sh;
1393 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1394 | };
1395 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1396 | isa = PBXShellScriptBuildPhase;
1397 | buildActionMask = 2147483647;
1398 | files = (
1399 | );
1400 | inputPaths = (
1401 | );
1402 | name = "Bundle React Native Code And Images";
1403 | outputPaths = (
1404 | );
1405 | runOnlyForDeploymentPostprocessing = 0;
1406 | shellPath = /bin/sh;
1407 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1408 | };
1409 | /* End PBXShellScriptBuildPhase section */
1410 |
1411 | /* Begin PBXSourcesBuildPhase section */
1412 | 00E356EA1AD99517003FC87E /* Sources */ = {
1413 | isa = PBXSourcesBuildPhase;
1414 | buildActionMask = 2147483647;
1415 | files = (
1416 | 00E356F31AD99517003FC87E /* ValidatorTests.m in Sources */,
1417 | );
1418 | runOnlyForDeploymentPostprocessing = 0;
1419 | };
1420 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1421 | isa = PBXSourcesBuildPhase;
1422 | buildActionMask = 2147483647;
1423 | files = (
1424 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1425 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1426 | );
1427 | runOnlyForDeploymentPostprocessing = 0;
1428 | };
1429 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1430 | isa = PBXSourcesBuildPhase;
1431 | buildActionMask = 2147483647;
1432 | files = (
1433 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1434 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1435 | );
1436 | runOnlyForDeploymentPostprocessing = 0;
1437 | };
1438 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1439 | isa = PBXSourcesBuildPhase;
1440 | buildActionMask = 2147483647;
1441 | files = (
1442 | 2DCD954D1E0B4F2C00145EB5 /* ValidatorTests.m in Sources */,
1443 | );
1444 | runOnlyForDeploymentPostprocessing = 0;
1445 | };
1446 | /* End PBXSourcesBuildPhase section */
1447 |
1448 | /* Begin PBXTargetDependency section */
1449 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1450 | isa = PBXTargetDependency;
1451 | target = 13B07F861A680F5B00A75B9A /* Validator */;
1452 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1453 | };
1454 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1455 | isa = PBXTargetDependency;
1456 | target = 2D02E47A1E0B4A5D006451C7 /* Validator-tvOS */;
1457 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1458 | };
1459 | /* End PBXTargetDependency section */
1460 |
1461 | /* Begin PBXVariantGroup section */
1462 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1463 | isa = PBXVariantGroup;
1464 | children = (
1465 | 13B07FB21A68108700A75B9A /* Base */,
1466 | );
1467 | name = LaunchScreen.xib;
1468 | path = Validator;
1469 | sourceTree = "";
1470 | };
1471 | /* End PBXVariantGroup section */
1472 |
1473 | /* Begin XCBuildConfiguration section */
1474 | 00E356F61AD99517003FC87E /* Debug */ = {
1475 | isa = XCBuildConfiguration;
1476 | buildSettings = {
1477 | BUNDLE_LOADER = "$(TEST_HOST)";
1478 | DEVELOPMENT_TEAM = 8Y2J55823C;
1479 | GCC_PREPROCESSOR_DEFINITIONS = (
1480 | "DEBUG=1",
1481 | "$(inherited)",
1482 | );
1483 | HEADER_SEARCH_PATHS = (
1484 | "$(inherited)",
1485 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1486 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1487 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1488 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1489 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1490 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1491 | );
1492 | INFOPLIST_FILE = ValidatorTests/Info.plist;
1493 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1494 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1495 | LIBRARY_SEARCH_PATHS = (
1496 | "$(inherited)",
1497 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1498 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1499 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1500 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1501 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1502 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1503 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1504 | );
1505 | OTHER_LDFLAGS = (
1506 | "-ObjC",
1507 | "-lc++",
1508 | );
1509 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1510 | PRODUCT_NAME = "$(TARGET_NAME)";
1511 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Validator.app/Validator";
1512 | };
1513 | name = Debug;
1514 | };
1515 | 00E356F71AD99517003FC87E /* Release */ = {
1516 | isa = XCBuildConfiguration;
1517 | buildSettings = {
1518 | BUNDLE_LOADER = "$(TEST_HOST)";
1519 | COPY_PHASE_STRIP = NO;
1520 | DEVELOPMENT_TEAM = 8Y2J55823C;
1521 | HEADER_SEARCH_PATHS = (
1522 | "$(inherited)",
1523 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1524 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1525 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1526 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1527 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1528 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1529 | );
1530 | INFOPLIST_FILE = ValidatorTests/Info.plist;
1531 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1532 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1533 | LIBRARY_SEARCH_PATHS = (
1534 | "$(inherited)",
1535 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1536 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1537 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1538 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1539 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1540 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1541 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1542 | );
1543 | OTHER_LDFLAGS = (
1544 | "-ObjC",
1545 | "-lc++",
1546 | );
1547 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1548 | PRODUCT_NAME = "$(TARGET_NAME)";
1549 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Validator.app/Validator";
1550 | };
1551 | name = Release;
1552 | };
1553 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1554 | isa = XCBuildConfiguration;
1555 | buildSettings = {
1556 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1557 | CURRENT_PROJECT_VERSION = 1;
1558 | DEAD_CODE_STRIPPING = NO;
1559 | DEVELOPMENT_TEAM = 8Y2J55823C;
1560 | HEADER_SEARCH_PATHS = (
1561 | "$(inherited)",
1562 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1563 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1564 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1565 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1566 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1567 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1568 | );
1569 | INFOPLIST_FILE = Validator/Info.plist;
1570 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1571 | OTHER_LDFLAGS = (
1572 | "$(inherited)",
1573 | "-ObjC",
1574 | "-lc++",
1575 | );
1576 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1577 | PRODUCT_NAME = Validator;
1578 | VERSIONING_SYSTEM = "apple-generic";
1579 | };
1580 | name = Debug;
1581 | };
1582 | 13B07F951A680F5B00A75B9A /* Release */ = {
1583 | isa = XCBuildConfiguration;
1584 | buildSettings = {
1585 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1586 | CURRENT_PROJECT_VERSION = 1;
1587 | DEVELOPMENT_TEAM = 8Y2J55823C;
1588 | HEADER_SEARCH_PATHS = (
1589 | "$(inherited)",
1590 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1591 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1592 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1593 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1594 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1595 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1596 | );
1597 | INFOPLIST_FILE = Validator/Info.plist;
1598 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1599 | OTHER_LDFLAGS = (
1600 | "$(inherited)",
1601 | "-ObjC",
1602 | "-lc++",
1603 | );
1604 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1605 | PRODUCT_NAME = Validator;
1606 | VERSIONING_SYSTEM = "apple-generic";
1607 | };
1608 | name = Release;
1609 | };
1610 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1611 | isa = XCBuildConfiguration;
1612 | buildSettings = {
1613 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1614 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1615 | CLANG_ANALYZER_NONNULL = YES;
1616 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1617 | CLANG_WARN_INFINITE_RECURSION = YES;
1618 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1619 | DEBUG_INFORMATION_FORMAT = dwarf;
1620 | DEVELOPMENT_TEAM = 8Y2J55823C;
1621 | ENABLE_TESTABILITY = YES;
1622 | GCC_NO_COMMON_BLOCKS = YES;
1623 | HEADER_SEARCH_PATHS = (
1624 | "$(inherited)",
1625 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1626 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1627 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1628 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1629 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1630 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1631 | );
1632 | INFOPLIST_FILE = "Validator-tvOS/Info.plist";
1633 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1634 | LIBRARY_SEARCH_PATHS = (
1635 | "$(inherited)",
1636 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1637 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1638 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1639 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1640 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1641 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1642 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1643 | );
1644 | OTHER_LDFLAGS = (
1645 | "-ObjC",
1646 | "-lc++",
1647 | );
1648 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Validator-tvOS";
1649 | PRODUCT_NAME = "$(TARGET_NAME)";
1650 | SDKROOT = appletvos;
1651 | TARGETED_DEVICE_FAMILY = 3;
1652 | TVOS_DEPLOYMENT_TARGET = 9.2;
1653 | };
1654 | name = Debug;
1655 | };
1656 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
1657 | isa = XCBuildConfiguration;
1658 | buildSettings = {
1659 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1660 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1661 | CLANG_ANALYZER_NONNULL = YES;
1662 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1663 | CLANG_WARN_INFINITE_RECURSION = YES;
1664 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1665 | COPY_PHASE_STRIP = NO;
1666 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1667 | DEVELOPMENT_TEAM = 8Y2J55823C;
1668 | GCC_NO_COMMON_BLOCKS = YES;
1669 | HEADER_SEARCH_PATHS = (
1670 | "$(inherited)",
1671 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1672 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1673 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1674 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1675 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1676 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1677 | );
1678 | INFOPLIST_FILE = "Validator-tvOS/Info.plist";
1679 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1680 | LIBRARY_SEARCH_PATHS = (
1681 | "$(inherited)",
1682 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1683 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1684 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1685 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1686 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1687 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1688 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1689 | );
1690 | OTHER_LDFLAGS = (
1691 | "-ObjC",
1692 | "-lc++",
1693 | );
1694 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Validator-tvOS";
1695 | PRODUCT_NAME = "$(TARGET_NAME)";
1696 | SDKROOT = appletvos;
1697 | TARGETED_DEVICE_FAMILY = 3;
1698 | TVOS_DEPLOYMENT_TARGET = 9.2;
1699 | };
1700 | name = Release;
1701 | };
1702 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1703 | isa = XCBuildConfiguration;
1704 | buildSettings = {
1705 | BUNDLE_LOADER = "$(TEST_HOST)";
1706 | CLANG_ANALYZER_NONNULL = YES;
1707 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1708 | CLANG_WARN_INFINITE_RECURSION = YES;
1709 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1710 | DEBUG_INFORMATION_FORMAT = dwarf;
1711 | DEVELOPMENT_TEAM = 8Y2J55823C;
1712 | ENABLE_TESTABILITY = YES;
1713 | GCC_NO_COMMON_BLOCKS = YES;
1714 | HEADER_SEARCH_PATHS = (
1715 | "$(inherited)",
1716 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1717 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1718 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1719 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1720 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1721 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1722 | );
1723 | INFOPLIST_FILE = "Validator-tvOSTests/Info.plist";
1724 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1725 | LIBRARY_SEARCH_PATHS = (
1726 | "$(inherited)",
1727 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1728 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1729 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1730 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1731 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1732 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1733 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1734 | );
1735 | OTHER_LDFLAGS = (
1736 | "-ObjC",
1737 | "-lc++",
1738 | );
1739 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Validator-tvOSTests";
1740 | PRODUCT_NAME = "$(TARGET_NAME)";
1741 | SDKROOT = appletvos;
1742 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Validator-tvOS.app/Validator-tvOS";
1743 | TVOS_DEPLOYMENT_TARGET = 10.1;
1744 | };
1745 | name = Debug;
1746 | };
1747 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1748 | isa = XCBuildConfiguration;
1749 | buildSettings = {
1750 | BUNDLE_LOADER = "$(TEST_HOST)";
1751 | CLANG_ANALYZER_NONNULL = YES;
1752 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1753 | CLANG_WARN_INFINITE_RECURSION = YES;
1754 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1755 | COPY_PHASE_STRIP = NO;
1756 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1757 | DEVELOPMENT_TEAM = 8Y2J55823C;
1758 | GCC_NO_COMMON_BLOCKS = YES;
1759 | HEADER_SEARCH_PATHS = (
1760 | "$(inherited)",
1761 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1762 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**",
1763 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios",
1764 | "$(SRCROOT)/../node_modules/react-native-spinkit/ios/**",
1765 | "$(SRCROOT)/../node_modules/react-native-touch-id",
1766 | "$(SRCROOT)/../node_modules/react-native-rsa-native/ios",
1767 | );
1768 | INFOPLIST_FILE = "Validator-tvOSTests/Info.plist";
1769 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1770 | LIBRARY_SEARCH_PATHS = (
1771 | "$(inherited)",
1772 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1773 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1774 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1775 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1776 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1777 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1778 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1779 | );
1780 | OTHER_LDFLAGS = (
1781 | "-ObjC",
1782 | "-lc++",
1783 | );
1784 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Validator-tvOSTests";
1785 | PRODUCT_NAME = "$(TARGET_NAME)";
1786 | SDKROOT = appletvos;
1787 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Validator-tvOS.app/Validator-tvOS";
1788 | TVOS_DEPLOYMENT_TARGET = 10.1;
1789 | };
1790 | name = Release;
1791 | };
1792 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1793 | isa = XCBuildConfiguration;
1794 | buildSettings = {
1795 | ALWAYS_SEARCH_USER_PATHS = NO;
1796 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1797 | CLANG_CXX_LIBRARY = "libc++";
1798 | CLANG_ENABLE_MODULES = YES;
1799 | CLANG_ENABLE_OBJC_ARC = YES;
1800 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1801 | CLANG_WARN_BOOL_CONVERSION = YES;
1802 | CLANG_WARN_COMMA = YES;
1803 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1804 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1805 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1806 | CLANG_WARN_EMPTY_BODY = YES;
1807 | CLANG_WARN_ENUM_CONVERSION = YES;
1808 | CLANG_WARN_INFINITE_RECURSION = YES;
1809 | CLANG_WARN_INT_CONVERSION = YES;
1810 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1811 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1812 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1813 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1814 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1815 | CLANG_WARN_STRICT_PROTOTYPES = YES;
1816 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1817 | CLANG_WARN_UNREACHABLE_CODE = YES;
1818 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1819 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1820 | COPY_PHASE_STRIP = NO;
1821 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1822 | ENABLE_TESTABILITY = YES;
1823 | GCC_C_LANGUAGE_STANDARD = gnu99;
1824 | GCC_DYNAMIC_NO_PIC = NO;
1825 | GCC_NO_COMMON_BLOCKS = YES;
1826 | GCC_OPTIMIZATION_LEVEL = 0;
1827 | GCC_PREPROCESSOR_DEFINITIONS = (
1828 | "DEBUG=1",
1829 | "$(inherited)",
1830 | );
1831 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1832 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1833 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1834 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1835 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1836 | GCC_WARN_UNUSED_FUNCTION = YES;
1837 | GCC_WARN_UNUSED_VARIABLE = YES;
1838 | IPHONEOS_DEPLOYMENT_TARGET = 12.1;
1839 | MTL_ENABLE_DEBUG_INFO = YES;
1840 | ONLY_ACTIVE_ARCH = YES;
1841 | SDKROOT = iphoneos;
1842 | };
1843 | name = Debug;
1844 | };
1845 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1846 | isa = XCBuildConfiguration;
1847 | buildSettings = {
1848 | ALWAYS_SEARCH_USER_PATHS = NO;
1849 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1850 | CLANG_CXX_LIBRARY = "libc++";
1851 | CLANG_ENABLE_MODULES = YES;
1852 | CLANG_ENABLE_OBJC_ARC = YES;
1853 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1854 | CLANG_WARN_BOOL_CONVERSION = YES;
1855 | CLANG_WARN_COMMA = YES;
1856 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1857 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1858 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1859 | CLANG_WARN_EMPTY_BODY = YES;
1860 | CLANG_WARN_ENUM_CONVERSION = YES;
1861 | CLANG_WARN_INFINITE_RECURSION = YES;
1862 | CLANG_WARN_INT_CONVERSION = YES;
1863 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1864 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1865 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1866 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1867 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1868 | CLANG_WARN_STRICT_PROTOTYPES = YES;
1869 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1870 | CLANG_WARN_UNREACHABLE_CODE = YES;
1871 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1872 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1873 | COPY_PHASE_STRIP = YES;
1874 | ENABLE_NS_ASSERTIONS = NO;
1875 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1876 | GCC_C_LANGUAGE_STANDARD = gnu99;
1877 | GCC_NO_COMMON_BLOCKS = YES;
1878 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1879 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1880 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1881 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1882 | GCC_WARN_UNUSED_FUNCTION = YES;
1883 | GCC_WARN_UNUSED_VARIABLE = YES;
1884 | IPHONEOS_DEPLOYMENT_TARGET = 12.1;
1885 | MTL_ENABLE_DEBUG_INFO = NO;
1886 | SDKROOT = iphoneos;
1887 | VALIDATE_PRODUCT = YES;
1888 | };
1889 | name = Release;
1890 | };
1891 | /* End XCBuildConfiguration section */
1892 |
1893 | /* Begin XCConfigurationList section */
1894 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ValidatorTests" */ = {
1895 | isa = XCConfigurationList;
1896 | buildConfigurations = (
1897 | 00E356F61AD99517003FC87E /* Debug */,
1898 | 00E356F71AD99517003FC87E /* Release */,
1899 | );
1900 | defaultConfigurationIsVisible = 0;
1901 | defaultConfigurationName = Release;
1902 | };
1903 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Validator" */ = {
1904 | isa = XCConfigurationList;
1905 | buildConfigurations = (
1906 | 13B07F941A680F5B00A75B9A /* Debug */,
1907 | 13B07F951A680F5B00A75B9A /* Release */,
1908 | );
1909 | defaultConfigurationIsVisible = 0;
1910 | defaultConfigurationName = Release;
1911 | };
1912 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Validator-tvOS" */ = {
1913 | isa = XCConfigurationList;
1914 | buildConfigurations = (
1915 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1916 | 2D02E4981E0B4A5E006451C7 /* Release */,
1917 | );
1918 | defaultConfigurationIsVisible = 0;
1919 | defaultConfigurationName = Release;
1920 | };
1921 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Validator-tvOSTests" */ = {
1922 | isa = XCConfigurationList;
1923 | buildConfigurations = (
1924 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1925 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1926 | );
1927 | defaultConfigurationIsVisible = 0;
1928 | defaultConfigurationName = Release;
1929 | };
1930 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Validator" */ = {
1931 | isa = XCConfigurationList;
1932 | buildConfigurations = (
1933 | 83CBBA201A601CBA00E9B192 /* Debug */,
1934 | 83CBBA211A601CBA00E9B192 /* Release */,
1935 | );
1936 | defaultConfigurationIsVisible = 0;
1937 | defaultConfigurationName = Release;
1938 | };
1939 | /* End XCConfigurationList section */
1940 | };
1941 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1942 | }
1943 |
--------------------------------------------------------------------------------