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