├── .watchmanconfig
├── .gitattributes
├── app.json
├── README.md
├── 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
│ │ │ │ └── farazamiruddin
│ │ │ │ └── phoneauth
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── MainApplication.java
│ │ │ └── AndroidManifest.xml
│ ├── BUCK
│ ├── proguard-rules.pro
│ └── build.gradle
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── keystores
│ ├── debug.keystore.properties
│ └── BUCK
├── settings.gradle
├── gradle.properties
├── build.gradle
├── gradlew.bat
└── gradlew
├── assets
└── RNFirebase512x512.png
├── index.js
├── .buckconfig
├── .babelrc
├── ios
├── PhoneAuth.xcworkspace
│ └── contents.xcworkspacedata
├── PhoneAuth
│ ├── AppDelegate.h
│ ├── main.m
│ ├── Images.xcassets
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── AppDelegate.m
│ ├── Info.plist
│ └── Base.lproj
│ │ └── LaunchScreen.xib
├── Podfile
├── PhoneAuthTests
│ ├── Info.plist
│ └── PhoneAuthTests.m
├── PhoneAuth-tvOSTests
│ └── Info.plist
├── PhoneAuth-tvOS
│ └── Info.plist
├── PhoneAuth.xcodeproj
│ ├── xcshareddata
│ │ └── xcschemes
│ │ │ ├── PhoneAuth.xcscheme
│ │ │ └── PhoneAuth-tvOS.xcscheme
│ └── project.pbxproj
└── Podfile.lock
├── src
├── App.js
├── Loading.js
├── Main.js
├── Login.js
└── SignUp.js
├── LICENSE
├── package.json
├── .gitignore
├── .flowconfig
└── bin
└── rename.js
/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "PhoneAuth",
3 | "displayName": "PhoneAuth"
4 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React Native and Firebase: Authentication
2 | Sample App of Authentication with React Native and Firebase
3 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | PhoneAuth
3 |
4 |
--------------------------------------------------------------------------------
/assets/RNFirebase512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/faahmad/react-native-firebase-auth/HEAD/assets/RNFirebase512x512.png
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import { AppRegistry } from 'react-native'
2 | import App from './src/App'
3 | AppRegistry.registerComponent('PhoneAuth', () => App)
4 |
--------------------------------------------------------------------------------
/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/faahmad/react-native-firebase-auth/HEAD/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/android/keystores/debug.keystore.properties:
--------------------------------------------------------------------------------
1 | key.store=debug.keystore
2 | key.alias=androiddebugkey
3 | key.store.password=android
4 | key.alias.password=android
5 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/faahmad/react-native-firebase-auth/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/faahmad/react-native-firebase-auth/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/faahmad/react-native-firebase-auth/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/faahmad/react-native-firebase-auth/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 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "babel-preset-react-native-stage-0/decorator-support"
4 | ],
5 | "env": {
6 | "development": {
7 | "plugins": [
8 | "transform-react-jsx-source"
9 | ]
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'PhoneAuth'
2 | include ':react-native-firebase'
3 | project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android')
4 |
5 | include ':app'
6 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
6 |
--------------------------------------------------------------------------------
/ios/PhoneAuth.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/farazamiruddin/phoneauth/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.farazamiruddin.phoneauth;
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 "PhoneAuth";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/ios/PhoneAuth/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 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { StyleSheet, Platform, Image, Text, View } from 'react-native'
3 | import { SwitchNavigator } from 'react-navigation'
4 |
5 | // import the different screens
6 | import Loading from './Loading'
7 | import SignUp from './SignUp'
8 | import Login from './Login'
9 | import Main from './Main'
10 |
11 | // create our app's navigation stack
12 | const App = SwitchNavigator(
13 | {
14 | Loading,
15 | SignUp,
16 | Login,
17 | Main
18 | },
19 | {
20 | initialRouteName: 'Loading'
21 | }
22 | )
23 |
24 | export default App
25 |
--------------------------------------------------------------------------------
/ios/PhoneAuth/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 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2017 Invertase Limited
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this library except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
14 |
--------------------------------------------------------------------------------
/src/Loading.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { View, Text, ActivityIndicator, StyleSheet } from 'react-native'
3 | import firebase from 'react-native-firebase'
4 |
5 | export default class Loading extends React.Component {
6 | componentDidMount() {
7 | firebase.auth().onAuthStateChanged(user => {
8 | this.props.navigation.navigate(user ? 'Main' : 'SignUp')
9 | })
10 | }
11 |
12 | render() {
13 | return (
14 |
15 | Loading
16 |
17 |
18 | )
19 | }
20 | }
21 |
22 | const styles = StyleSheet.create({
23 | container: {
24 | flex: 1,
25 | justifyContent: 'center',
26 | alignItems: 'center'
27 | }
28 | })
29 |
--------------------------------------------------------------------------------
/ios/PhoneAuth/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 | }
--------------------------------------------------------------------------------
/src/Main.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { StyleSheet, Platform, Image, Text, View } from 'react-native'
3 | import firebase from 'react-native-firebase'
4 |
5 | export default class Main extends React.Component {
6 | state = { currentUser: null }
7 |
8 | componentDidMount() {
9 | const { currentUser } = firebase.auth()
10 |
11 | this.setState({ currentUser })
12 | }
13 |
14 | render() {
15 | const { currentUser } = this.state
16 |
17 | return (
18 |
19 |
20 | Hi {currentUser && currentUser.email}!
21 |
22 |
23 | )
24 | }
25 | }
26 |
27 | const styles = StyleSheet.create({
28 | container: {
29 | flex: 1,
30 | justifyContent: 'center',
31 | alignItems: 'center'
32 | }
33 | })
34 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment the next line to define a global platform for your project
2 | platform :ios, '9.0'
3 |
4 | target 'PhoneAuth' do
5 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
6 | # use_frameworks!
7 |
8 | # Pods for PhoneAuth
9 |
10 | # Required by RNFirebase
11 | pod 'Firebase/Core'
12 |
13 | # [OPTIONAL PODS] - comment out pods for firebase products you won't be using.
14 | pod 'Firebase/AdMob'
15 | pod 'Firebase/Auth'
16 | pod 'Firebase/Crash'
17 | pod 'Firebase/Database'
18 | pod 'Firebase/DynamicLinks'
19 | pod 'Firebase/Performance'
20 | pod 'Firebase/Firestore'
21 | pod 'Firebase/Messaging'
22 | pod 'Firebase/RemoteConfig'
23 | pod 'Firebase/Storage'
24 |
25 | pod 'Fabric', '~> 1.7.2'
26 | pod 'Crashlytics', '~> 3.9.3'
27 | end
28 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "PhoneAuth",
3 | "version": "0.1.0",
4 | "private": true,
5 | "devDependencies": {
6 | "babel-jest": "22.0.6",
7 | "babel-preset-react-native-stage-0": "^1.0.1",
8 | "fs-extra": "^4.0.2",
9 | "jest": "22.0.6",
10 | "react-test-renderer": "16.2.0",
11 | "replace-in-file": "^3.0.0"
12 | },
13 | "scripts": {
14 | "android": "react-native run-android",
15 | "ios": "react-native run-ios",
16 | "rename": "node ./bin/rename.js",
17 | "start": "react-native start",
18 | "test": "jest"
19 | },
20 | "jest": {
21 | "preset": "react-native"
22 | },
23 | "dependencies": {
24 | "fbjs": "^0.8.16",
25 | "react": "^16.2.0",
26 | "react-native": "^0.53.0",
27 | "react-native-firebase": "^3.2.7",
28 | "react-navigation": "^1.5.8"
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/ios/PhoneAuthTests/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/PhoneAuth-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/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 | maven {
7 | url 'https://maven.fabric.io/public'
8 | }
9 | }
10 | dependencies {
11 | classpath 'com.android.tools.build:gradle:2.2.3'
12 | classpath 'com.google.gms:google-services:3.1.2'
13 | classpath 'io.fabric.tools:gradle:1.24.4'
14 | // NOTE: Do not place your application dependencies here; they belong
15 | // in the individual module build.gradle files
16 | }
17 | }
18 |
19 | allprojects {
20 | repositories {
21 | mavenLocal()
22 | jcenter()
23 | maven {
24 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
25 | url "$rootDir/../node_modules/react-native/android"
26 | }
27 | maven {
28 | url 'https://maven.google.com'
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 |
25 | # Android/IntelliJ
26 | #
27 | build/
28 | .idea
29 | .gradle
30 | local.properties
31 | *.iml
32 |
33 | # node.js
34 | #
35 | node_modules/
36 | npm-debug.log
37 | yarn-error.log
38 |
39 | # BUCK
40 | buck-out/
41 | \.buckd/
42 | *.keystore
43 |
44 | # fastlane
45 | #
46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47 | # screenshots whenever they are needed.
48 | # For more information about the recommended setup visit:
49 | # https://docs.fastlane.tools/best-practices/source-control/
50 |
51 | */fastlane/report.xml
52 | */fastlane/Preview.html
53 | */fastlane/screenshots
54 |
55 |
56 | # RNFirebase specific
57 | #
58 | .expo/
59 | /ios/Pods/
60 | google-services.json
61 | GoogleService-Info.plist
62 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
12 |
13 |
19 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/ios/PhoneAuth/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 | #import
15 |
16 | @implementation AppDelegate
17 |
18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
19 | {
20 | [FIRApp configure];
21 | NSURL *jsCodeLocation;
22 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
23 |
24 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
25 | moduleName:@"PhoneAuth"
26 | initialProperties:nil
27 | launchOptions:launchOptions];
28 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
29 |
30 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
31 | UIViewController *rootViewController = [UIViewController new];
32 | rootViewController.view = rootView;
33 | self.window.rootViewController = rootViewController;
34 | [self.window makeKeyAndVisible];
35 | return YES;
36 | }
37 |
38 | @end
39 |
--------------------------------------------------------------------------------
/.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 | unsafe.enable_getters_and_setters=true
54 |
55 | [version]
56 | ^0.61.0
57 |
--------------------------------------------------------------------------------
/ios/PhoneAuth-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.farazamiruddin.phoneauth",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.farazamiruddin.phoneauth",
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/PhoneAuth/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | $(DISPLAY_NAME)
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(DISPLAY_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 |
--------------------------------------------------------------------------------
/src/Login.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { StyleSheet, Text, TextInput, View, Button } from 'react-native'
3 | import firebase from 'react-native-firebase'
4 |
5 | export default class Login extends React.Component {
6 | state = { email: '', password: '', errorMessage: null }
7 |
8 | handleLogin = () => {
9 | const { email, password } = this.state
10 | firebase
11 | .auth()
12 | .signInWithEmailAndPassword(email, password)
13 | .then(() => this.props.navigation.navigate('Main'))
14 | .catch(error => this.setState({ errorMessage: error.message }))
15 | }
16 |
17 | render() {
18 | return (
19 |
20 | Login
21 | {this.state.errorMessage &&
22 |
23 | {this.state.errorMessage}
24 | }
25 | this.setState({ email })}
30 | value={this.state.email}
31 | />
32 | this.setState({ password })}
38 | value={this.state.password}
39 | />
40 |
41 |
46 | )
47 | }
48 | }
49 |
50 | const styles = StyleSheet.create({
51 | container: {
52 | flex: 1,
53 | justifyContent: 'center',
54 | alignItems: 'center'
55 | },
56 | textInput: {
57 | height: 40,
58 | width: '90%',
59 | borderColor: 'gray',
60 | borderWidth: 1,
61 | marginTop: 8
62 | }
63 | })
64 |
--------------------------------------------------------------------------------
/src/SignUp.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { StyleSheet, Text, TextInput, View, Button } from 'react-native'
3 | import firebase from 'react-native-firebase'
4 |
5 | export default class SignUp extends React.Component {
6 | state = { email: '', password: '', errorMessage: null }
7 |
8 | handleSignUp = () => {
9 | const { email, password } = this.state
10 | firebase
11 | .auth()
12 | .createUserWithEmailAndPassword(email, password)
13 | .then(user => this.props.navigation.navigate('Main'))
14 | .catch(error => this.setState({ errorMessage: error.message }))
15 | }
16 |
17 | render() {
18 | return (
19 |
20 | Sign Up
21 | {this.state.errorMessage &&
22 |
23 | {this.state.errorMessage}
24 | }
25 | this.setState({ email })}
30 | value={this.state.email}
31 | />
32 | this.setState({ password })}
38 | value={this.state.password}
39 | />
40 |
41 |
46 | )
47 | }
48 | }
49 |
50 | const styles = StyleSheet.create({
51 | container: {
52 | flex: 1,
53 | justifyContent: 'center',
54 | alignItems: 'center'
55 | },
56 | textInput: {
57 | height: 40,
58 | width: '90%',
59 | borderColor: 'gray',
60 | borderWidth: 1,
61 | marginTop: 8
62 | }
63 | })
64 |
--------------------------------------------------------------------------------
/ios/PhoneAuthTests/PhoneAuthTests.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 PhoneAuthTests : XCTestCase
20 |
21 | @end
22 |
23 | @implementation PhoneAuthTests
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 |
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
19 | # Disabling obfuscation is useful if you collect stack traces from production crashes
20 | # (unless you are using a system that supports de-obfuscate the stack traces).
21 | -dontobfuscate
22 |
23 | # React Native
24 |
25 | # Keep our interfaces so they can be used by other ProGuard rules.
26 | # See http://sourceforge.net/p/proguard/bugs/466/
27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
30 |
31 | # Do not strip any method/class that is annotated with @DoNotStrip
32 | -keep @com.facebook.proguard.annotations.DoNotStrip class *
33 | -keep @com.facebook.common.internal.DoNotStrip class *
34 | -keepclassmembers class * {
35 | @com.facebook.proguard.annotations.DoNotStrip *;
36 | @com.facebook.common.internal.DoNotStrip *;
37 | }
38 |
39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
40 | void set*(***);
41 | *** get*();
42 | }
43 |
44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; }
46 | -keepclassmembers,includedescriptorclasses class * { native ; }
47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; }
48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; }
49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; }
50 |
51 | -dontwarn com.facebook.react.**
52 |
53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
55 | -dontwarn android.text.StaticLayout
56 |
57 | # okhttp
58 |
59 | -keepattributes Signature
60 | -keepattributes *Annotation*
61 | -keep class okhttp3.** { *; }
62 | -keep interface okhttp3.** { *; }
63 | -dontwarn okhttp3.**
64 |
65 | # okio
66 |
67 | -keep class sun.misc.Unsafe { *; }
68 | -dontwarn java.nio.file.*
69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
70 | -dontwarn okio.**
71 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/farazamiruddin/phoneauth/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.farazamiruddin.phoneauth;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.facebook.react.ReactNativeHost;
7 | import com.facebook.react.ReactPackage;
8 | import com.facebook.react.shell.MainReactPackage;
9 | import com.facebook.soloader.SoLoader;
10 |
11 | import io.invertase.firebase.RNFirebasePackage;
12 | // optional packages - add/remove as appropriate
13 | import io.invertase.firebase.admob.RNFirebaseAdMobPackage; //Firebase AdMob
14 | import io.invertase.firebase.analytics.RNFirebaseAnalyticsPackage; // Firebase Analytics
15 | import io.invertase.firebase.auth.RNFirebaseAuthPackage; // Firebase Auth
16 | import io.invertase.firebase.config.RNFirebaseRemoteConfigPackage; // Firebase Remote Config
17 | import io.invertase.firebase.crash.RNFirebaseCrashPackage; // Firebase Crash Reporting
18 | import io.invertase.firebase.database.RNFirebaseDatabasePackage; // Firebase Realtime Database
19 | import io.invertase.firebase.firestore.RNFirebaseFirestorePackage; // Firebase Firestore
20 | import io.invertase.firebase.messaging.RNFirebaseMessagingPackage; // Firebase Cloud Messaging
21 | import io.invertase.firebase.perf.RNFirebasePerformancePackage; // Firebase Performance
22 | import io.invertase.firebase.storage.RNFirebaseStoragePackage; // Firebase Storage
23 | import io.invertase.firebase.fabric.crashlytics.RNFirebaseCrashlyticsPackage; // Crashlytics
24 |
25 | import java.util.Arrays;
26 | import java.util.List;
27 |
28 | public class MainApplication extends Application implements ReactApplication {
29 |
30 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
31 | @Override
32 | public boolean getUseDeveloperSupport() {
33 | return BuildConfig.DEBUG;
34 | }
35 |
36 | @Override
37 | protected List getPackages() {
38 | return Arrays.asList(
39 | new MainReactPackage(),
40 | new RNFirebasePackage(),
41 | // add/remove these packages as appropriate
42 | new RNFirebaseAdMobPackage(),
43 | new RNFirebaseAnalyticsPackage(),
44 | new RNFirebaseAuthPackage(),
45 | new RNFirebaseRemoteConfigPackage(),
46 | new RNFirebaseCrashPackage(),
47 | new RNFirebaseDatabasePackage(),
48 | new RNFirebaseFirestorePackage(),
49 | new RNFirebaseMessagingPackage(),
50 | new RNFirebasePerformancePackage(),
51 | new RNFirebaseStoragePackage(),
52 | new RNFirebaseCrashlyticsPackage()
53 | );
54 | }
55 |
56 | @Override
57 | protected String getJSMainModuleName() {
58 | return "index";
59 | }
60 | };
61 |
62 | @Override
63 | public ReactNativeHost getReactNativeHost() {
64 | return mReactNativeHost;
65 | }
66 |
67 | @Override
68 | public void onCreate() {
69 | super.onCreate();
70 | SoLoader.init(this, /* native exopackage */ false);
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/ios/PhoneAuth/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/PhoneAuth.xcodeproj/xcshareddata/xcschemes/PhoneAuth.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
43 |
49 |
50 |
51 |
52 |
53 |
59 |
60 |
62 |
68 |
69 |
70 |
71 |
72 |
78 |
79 |
80 |
81 |
82 |
83 |
94 |
96 |
102 |
103 |
104 |
105 |
106 |
107 |
113 |
115 |
121 |
122 |
123 |
124 |
126 |
127 |
130 |
131 |
132 |
--------------------------------------------------------------------------------
/ios/PhoneAuth.xcodeproj/xcshareddata/xcschemes/PhoneAuth-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 |
--------------------------------------------------------------------------------
/bin/rename.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs-extra');
2 | const readline = require('readline');
3 | const replace = require('replace-in-file');
4 |
5 | const BASE_DIRECTORY = './';
6 | const DEFAULT_COMPANY_NAME = 'invertase';
7 | const DEFAULT_PACKAGE_NAME = 'com.invertase.rnfirebasestarter';
8 | const DEFAULT_PROJECT_NAME = 'RNFirebaseStarter';
9 | const VALID_CHARACTERS = /^[a-zA-Z\s]+$/;
10 |
11 | const rl = readline.createInterface({
12 | input: process.stdin,
13 | output: process.stdout
14 | });
15 |
16 | const readInput = (input) => {
17 | return new Promise((resolve, reject) => {
18 | rl.question(`Enter your ${input}: `, (answer) => {
19 | resolve(answer);
20 | })
21 | })
22 | }
23 |
24 | const replaceInFile = (from, to) => {
25 | return new Promise((resolve, reject) => {
26 | const options = {
27 | files: [
28 | './android/**',
29 | './ios/**',
30 | './*',
31 | ],
32 | from: new RegExp(from, 'g'),
33 | to: to
34 | };
35 | replace(options)
36 | .then(changedFiles => {
37 | if (changedFiles) {
38 | console.log('[replaceInFile] Modified files: \n', changedFiles.join('\n'));
39 | }
40 | resolve();
41 | })
42 | .catch(error => {
43 | console.error('[replaceInFile] Error occurred: ', error);
44 | reject(error);
45 | })
46 | })
47 | }
48 |
49 | const renameFiles = (dir, from, to) => {
50 | const files = fs.readdirSync(dir);
51 | for (let i = 0; i < files.length; i += 1) {
52 | const filename = files[i];
53 | const path = dir + '/' + filename;
54 | const file = fs.statSync(path);
55 | let newPath;
56 | if (filename.indexOf(from) !== -1) {
57 | newPath = dir + '/' + filename.replace(from, to);
58 | fs.renameSync(path, newPath);
59 | console.log(`[renameFiles] Renamed: ${path} to: ${newPath}`);
60 | }
61 | // Recursive
62 | if (file.isDirectory()) {
63 | renameFiles(newPath || path, from, to);
64 | }
65 | }
66 | }
67 |
68 | const updateProjectName = (name) => {
69 | console.log('---------------------------------------');
70 | console.log(`Updating project name: ${name}`);
71 | console.log('---------------------------------------');
72 | return replaceInFile(DEFAULT_PROJECT_NAME, name)
73 | .then(() => {
74 | console.log('---------------------------------------');
75 | console.log('Finished updating project name');
76 | console.log('---------------------------------------');
77 | console.log();
78 | });
79 | }
80 |
81 | const updatePackageName = (packageName) => {
82 | console.log('---------------------------------------');
83 | console.log(`Updating package name: ${packageName}`);
84 | console.log('---------------------------------------');
85 | return replaceInFile(DEFAULT_PACKAGE_NAME, packageName)
86 | .then(() => {
87 | console.log('---------------------------------------');
88 | console.log('Finished updating package name');
89 | console.log('---------------------------------------');
90 | console.log();
91 | });;
92 | }
93 |
94 | const renameProjectFiles = (name) => {
95 | console.log('---------------------------------------');
96 | console.log(`Rename project files`);
97 | console.log('---------------------------------------');
98 | return new Promise((resolve, reject) => {
99 | renameFiles(BASE_DIRECTORY, DEFAULT_PROJECT_NAME, name);
100 | renameFiles(BASE_DIRECTORY, DEFAULT_PROJECT_NAME.toLowerCase(), name.toLowerCase());
101 | console.log('---------------------------------------');
102 | console.log('Finished renaming project files');
103 | console.log('---------------------------------------');
104 | console.log();
105 | resolve();
106 | })
107 | }
108 |
109 | const renameCompanyFiles = (name) => {
110 | console.log('---------------------------------------');
111 | console.log(`Rename company files`);
112 | console.log('---------------------------------------');
113 | return new Promise((resolve, reject) => {
114 | renameFiles(BASE_DIRECTORY, DEFAULT_COMPANY_NAME, name);
115 | console.log('---------------------------------------');
116 | console.log('Finished renaming company files');
117 | console.log('---------------------------------------');
118 | console.log();
119 | resolve();
120 | })
121 | }
122 |
123 | const run = async () => {
124 | console.log('---------------------------------------------------------');
125 | let projectName = await readInput('Project name, e.g. My Amazing Project');
126 | console.log('---------------------------------------------------------');
127 | if (!projectName || projectName === '' || projectName.trim() === '') {
128 | throw new Error('ERROR: Please supply a project name');
129 | }
130 | if (!projectName.match(VALID_CHARACTERS)) {
131 | throw new Error('ERROR: The project name must only contain letters or spaces');
132 | }
133 |
134 | let companyName = await readInput('Company name, e.g. My Company');
135 | console.log('---------------------------------------------------------');
136 | if (!companyName || companyName === '' || companyName.trim() === '') {
137 | throw new Error('ERROR: Please supply a company name');
138 | }
139 | if (!companyName.match(VALID_CHARACTERS)) {
140 | throw new Error('ERROR: The company name must only contain letters or spaces');
141 | }
142 |
143 | projectName = projectName.replace(/ /g, '');
144 | companyName = companyName.replace(/ /g, '').toLowerCase();
145 |
146 | const packageName = `com.${companyName}.${projectName.toLowerCase()}`;
147 | // Close the input
148 | rl.close();
149 |
150 | updateProjectName(projectName)
151 | .then(() => updatePackageName(packageName))
152 | .then(() => renameProjectFiles(projectName))
153 | .then(() => renameCompanyFiles(companyName))
154 | .then(() => {
155 | console.log();
156 | console.log('---------------------------------------------------------');
157 | console.log('Set project parameters to:');
158 | console.log('---------------------------------------------------------');
159 | console.log('Project name: ', projectName);
160 | console.log('Company name: ', companyName);
161 | console.log('Package name: ', packageName);
162 | console.log('---------------------------------------------------------');
163 | console.log();
164 | });
165 | }
166 |
167 | run().catch((error) => {
168 | console.error(error.message);
169 | console.log('---------------------------------------------------------');
170 | process.exit();
171 | });
172 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - BoringSSL (9.1):
3 | - BoringSSL/Implementation (= 9.1)
4 | - BoringSSL/Interface (= 9.1)
5 | - BoringSSL/Implementation (9.1):
6 | - BoringSSL/Interface (= 9.1)
7 | - BoringSSL/Interface (9.1)
8 | - Crashlytics (3.9.3):
9 | - Fabric (~> 1.7.2)
10 | - Fabric (1.7.2)
11 | - Firebase/AdMob (4.8.0):
12 | - Firebase/Core
13 | - Google-Mobile-Ads-SDK (= 7.27.0)
14 | - Firebase/Auth (4.8.0):
15 | - Firebase/Core
16 | - FirebaseAuth (= 4.4.1)
17 | - Firebase/Core (4.8.0):
18 | - FirebaseAnalytics (= 4.0.5)
19 | - FirebaseCore (= 4.0.13)
20 | - Firebase/Crash (4.8.0):
21 | - Firebase/Core
22 | - FirebaseCrash (= 2.0.2)
23 | - Firebase/Database (4.8.0):
24 | - Firebase/Core
25 | - FirebaseDatabase (= 4.1.3)
26 | - Firebase/DynamicLinks (4.8.0):
27 | - Firebase/Core
28 | - FirebaseDynamicLinks (= 2.3.1)
29 | - Firebase/Firestore (4.8.0):
30 | - Firebase/Core
31 | - FirebaseFirestore (= 0.9.4)
32 | - Firebase/Messaging (4.8.0):
33 | - Firebase/Core
34 | - FirebaseMessaging (= 2.0.8)
35 | - Firebase/Performance (4.8.0):
36 | - Firebase/Core
37 | - FirebasePerformance (= 1.1.0)
38 | - Firebase/RemoteConfig (4.8.0):
39 | - Firebase/Core
40 | - FirebaseRemoteConfig (= 2.1.0)
41 | - Firebase/Storage (4.8.0):
42 | - Firebase/Core
43 | - FirebaseStorage (= 2.1.1)
44 | - FirebaseABTesting (1.0.0):
45 | - FirebaseCore (~> 4.0)
46 | - Protobuf (~> 3.1)
47 | - FirebaseAnalytics (4.0.5):
48 | - FirebaseCore (~> 4.0)
49 | - FirebaseInstanceID (~> 2.0)
50 | - GoogleToolboxForMac/NSData+zlib (~> 2.1)
51 | - nanopb (~> 0.3)
52 | - FirebaseAuth (4.4.1):
53 | - FirebaseAnalytics (~> 4.0)
54 | - GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)
55 | - GTMSessionFetcher/Core (~> 1.1)
56 | - FirebaseCore (4.0.13):
57 | - GoogleToolboxForMac/NSData+zlib (~> 2.1)
58 | - FirebaseCrash (2.0.2):
59 | - FirebaseAnalytics (~> 4.0)
60 | - FirebaseInstanceID (~> 2.0)
61 | - GoogleToolboxForMac/Logger (~> 2.1)
62 | - GoogleToolboxForMac/NSData+zlib (~> 2.1)
63 | - Protobuf (~> 3.1)
64 | - FirebaseDatabase (4.1.3):
65 | - FirebaseAnalytics (~> 4.0)
66 | - FirebaseCore (~> 4.0)
67 | - leveldb-library (~> 1.18)
68 | - FirebaseDynamicLinks (2.3.1):
69 | - FirebaseAnalytics (~> 4.0)
70 | - FirebaseFirestore (0.9.4):
71 | - FirebaseAnalytics (~> 4.0)
72 | - FirebaseCore (~> 4.0)
73 | - gRPC-ProtoRPC (~> 1.0)
74 | - leveldb-library (~> 1.18)
75 | - Protobuf (~> 3.1)
76 | - FirebaseInstanceID (2.0.8):
77 | - FirebaseCore (~> 4.0)
78 | - FirebaseMessaging (2.0.8):
79 | - FirebaseAnalytics (~> 4.0)
80 | - FirebaseCore (~> 4.0)
81 | - FirebaseInstanceID (~> 2.0)
82 | - GoogleToolboxForMac/Logger (~> 2.1)
83 | - Protobuf (~> 3.1)
84 | - FirebasePerformance (1.1.0):
85 | - FirebaseAnalytics (~> 4.0)
86 | - FirebaseInstanceID (~> 2.0)
87 | - FirebaseSwizzlingUtilities (~> 1.0)
88 | - GoogleToolboxForMac/Logger (~> 2.1)
89 | - GoogleToolboxForMac/NSData+zlib (~> 2.1)
90 | - GTMSessionFetcher/Core (~> 1.1)
91 | - Protobuf (~> 3.1)
92 | - FirebaseRemoteConfig (2.1.0):
93 | - FirebaseABTesting (~> 1.0)
94 | - FirebaseAnalytics (~> 4.0)
95 | - FirebaseInstanceID (~> 2.0)
96 | - GoogleToolboxForMac/NSData+zlib (~> 2.1)
97 | - Protobuf (~> 3.1)
98 | - FirebaseStorage (2.1.1):
99 | - FirebaseAnalytics (~> 4.0)
100 | - FirebaseCore (~> 4.0)
101 | - GTMSessionFetcher/Core (~> 1.1)
102 | - FirebaseSwizzlingUtilities (1.0.0)
103 | - Google-Mobile-Ads-SDK (7.27.0)
104 | - GoogleToolboxForMac/DebugUtils (2.1.3):
105 | - GoogleToolboxForMac/Defines (= 2.1.3)
106 | - GoogleToolboxForMac/Defines (2.1.3)
107 | - GoogleToolboxForMac/Logger (2.1.3):
108 | - GoogleToolboxForMac/Defines (= 2.1.3)
109 | - GoogleToolboxForMac/NSData+zlib (2.1.3):
110 | - GoogleToolboxForMac/Defines (= 2.1.3)
111 | - GoogleToolboxForMac/NSDictionary+URLArguments (2.1.3):
112 | - GoogleToolboxForMac/DebugUtils (= 2.1.3)
113 | - GoogleToolboxForMac/Defines (= 2.1.3)
114 | - GoogleToolboxForMac/NSString+URLArguments (= 2.1.3)
115 | - GoogleToolboxForMac/NSString+URLArguments (2.1.3)
116 | - gRPC (1.8.0):
117 | - gRPC-RxLibrary (= 1.8.0)
118 | - gRPC/Main (= 1.8.0)
119 | - gRPC-Core (1.8.0):
120 | - gRPC-Core/Implementation (= 1.8.0)
121 | - gRPC-Core/Interface (= 1.8.0)
122 | - gRPC-Core/Implementation (1.8.0):
123 | - BoringSSL (~> 9.0)
124 | - gRPC-Core/Interface (= 1.8.0)
125 | - nanopb (~> 0.3)
126 | - gRPC-Core/Interface (1.8.0)
127 | - gRPC-ProtoRPC (1.8.0):
128 | - gRPC (= 1.8.0)
129 | - gRPC-RxLibrary (= 1.8.0)
130 | - Protobuf (~> 3.0)
131 | - gRPC-RxLibrary (1.8.0)
132 | - gRPC/Main (1.8.0):
133 | - gRPC-Core (= 1.8.0)
134 | - gRPC-RxLibrary (= 1.8.0)
135 | - GTMSessionFetcher/Core (1.1.12)
136 | - leveldb-library (1.20)
137 | - nanopb (0.3.8):
138 | - nanopb/decode (= 0.3.8)
139 | - nanopb/encode (= 0.3.8)
140 | - nanopb/decode (0.3.8)
141 | - nanopb/encode (0.3.8)
142 | - Protobuf (3.5.0)
143 |
144 | DEPENDENCIES:
145 | - Crashlytics (~> 3.9.3)
146 | - Fabric (~> 1.7.2)
147 | - Firebase/AdMob
148 | - Firebase/Auth
149 | - Firebase/Core
150 | - Firebase/Crash
151 | - Firebase/Database
152 | - Firebase/DynamicLinks
153 | - Firebase/Firestore
154 | - Firebase/Messaging
155 | - Firebase/Performance
156 | - Firebase/RemoteConfig
157 | - Firebase/Storage
158 |
159 | SPEC CHECKSUMS:
160 | BoringSSL: 84318770d120503ab1a6aaf1df777c5ca053697e
161 | Crashlytics: dbb07d01876c171c5ccbdf7826410380189e452c
162 | Fabric: 9cd6a848efcf1b8b07497e0b6a2e7d336353ba15
163 | Firebase: 710decbbc6d9d48530e9a5dba3209740c3532e05
164 | FirebaseABTesting: d07d0ee833b842d5153549e4c7e2e2cb1c23a3f9
165 | FirebaseAnalytics: 5b02a63ead2c3f0259cfc7f15e053e440587ecf8
166 | FirebaseAuth: dc0dd403beca5b2b016aac89c2d0b8dad1c81926
167 | FirebaseCore: 3c02ec652db3d03fdc8bc6d9154af3e20d64b6f5
168 | FirebaseCrash: cded0fc566c03651aea606a101bc156085f333ca
169 | FirebaseDatabase: 7088bfc4af2cc00231bb36e1404fc2d7509eb4dc
170 | FirebaseDynamicLinks: b708fbc1e9bd77c2d992812736b206820e283203
171 | FirebaseFirestore: 0fb0301657759bdd7a4bc37a436e543a86b189ad
172 | FirebaseInstanceID: 81df5805a08001e69138664bdd02c6719a9ac80f
173 | FirebaseMessaging: dfdcd307c2382290a1e297a81d0f18370f5b1bcd
174 | FirebasePerformance: 3877d097c59956aa2d7a317dbae503c2b4e78459
175 | FirebaseRemoteConfig: 451fe8e9c43ac1e7a137ad2a42189bfc8c2c3ebc
176 | FirebaseStorage: ab08d1c93a2feffa038fdd6693088b310ab1e6c6
177 | FirebaseSwizzlingUtilities: f1c49a5a372ac852c853722a5891a0a5e2344a6c
178 | Google-Mobile-Ads-SDK: 83f7f890e638ce8f1debd440ea363338c9f6be3b
179 | GoogleToolboxForMac: 2501e2ad72a52eb3dfe7bd9aee7dad11b858bd20
180 | gRPC: cc3f797b97bf221a9e535e8e012a6f99b1d7f797
181 | gRPC-Core: 250fd60016c4e4c413279f4002679b0e14e7df26
182 | gRPC-ProtoRPC: 5b934b29a95b94b0f871d4fc361ff52269476765
183 | gRPC-RxLibrary: 7c57a1b2ff2f9cafb0face35bbfa0a326281295d
184 | GTMSessionFetcher: ebaa1f79a5366922c1735f1566901f50beba23b7
185 | leveldb-library: 08cba283675b7ed2d99629a4bc5fd052cd2bb6a5
186 | nanopb: 5601e6bca2dbf1ed831b519092ec110f66982ca3
187 | Protobuf: 8a9838fba8dae3389230e1b7f8c104aa32389c03
188 |
189 | PODFILE CHECKSUM: d2ec5676da425a2da805526b1b72d5de1ee92a61
190 |
191 | COCOAPODS: 1.3.1
192 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 | apply plugin: "io.fabric"
3 |
4 | import com.android.build.OutputFile
5 |
6 | /**
7 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
8 | * and bundleReleaseJsAndAssets).
9 | * These basically call `react-native bundle` with the correct arguments during the Android build
10 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
11 | * bundle directly from the development server. Below you can see all the possible configurations
12 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
13 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
14 | *
15 | * project.ext.react = [
16 | * // the name of the generated asset file containing your JS bundle
17 | * bundleAssetName: "index.android.bundle",
18 | *
19 | * // the entry file for bundle generation
20 | * entryFile: "index.android.js",
21 | *
22 | * // whether to bundle JS and assets in debug mode
23 | * bundleInDebug: false,
24 | *
25 | * // whether to bundle JS and assets in release mode
26 | * bundleInRelease: true,
27 | *
28 | * // whether to bundle JS and assets in another build variant (if configured).
29 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
30 | * // The configuration property can be in the following formats
31 | * // 'bundleIn${productFlavor}${buildType}'
32 | * // 'bundleIn${buildType}'
33 | * // bundleInFreeDebug: true,
34 | * // bundleInPaidRelease: true,
35 | * // bundleInBeta: true,
36 | *
37 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
38 | * // for example: to disable dev mode in the staging build type (if configured)
39 | * devDisabledInStaging: true,
40 | * // The configuration property can be in the following formats
41 | * // 'devDisabledIn${productFlavor}${buildType}'
42 | * // 'devDisabledIn${buildType}'
43 | *
44 | * // the root of your project, i.e. where "package.json" lives
45 | * root: "../../",
46 | *
47 | * // where to put the JS bundle asset in debug mode
48 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
49 | *
50 | * // where to put the JS bundle asset in release mode
51 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
52 | *
53 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
54 | * // require('./image.png')), in debug mode
55 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in release mode
59 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
60 | *
61 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
62 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
63 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
64 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
65 | * // for example, you might want to remove it from here.
66 | * inputExcludes: ["android/**", "ios/**"],
67 | *
68 | * // override which node gets called and with what additional arguments
69 | * nodeExecutableAndArgs: ["node"],
70 | *
71 | * // supply additional arguments to the packager
72 | * extraPackagerArgs: []
73 | * ]
74 | */
75 |
76 | project.ext.react = [
77 | entryFile: "index.js"
78 | ]
79 |
80 | apply from: "../../node_modules/react-native/react.gradle"
81 |
82 | /**
83 | * Set this to true to create two separate APKs instead of one:
84 | * - An APK that only works on ARM devices
85 | * - An APK that only works on x86 devices
86 | * The advantage is the size of the APK is reduced by about 4MB.
87 | * Upload all the APKs to the Play Store and people will download
88 | * the correct one based on the CPU architecture of their device.
89 | */
90 | def enableSeparateBuildPerCPUArchitecture = false
91 |
92 | /**
93 | * Run Proguard to shrink the Java bytecode in release builds.
94 | */
95 | def enableProguardInReleaseBuilds = false
96 |
97 | android {
98 | // because of firestore:
99 | dexOptions {
100 | javaMaxHeapSize "4g"
101 | }
102 | compileSdkVersion 24
103 | buildToolsVersion "23.0.1"
104 |
105 | defaultConfig {
106 | applicationId "com.farazamiruddin.phoneauth"
107 | minSdkVersion 16
108 | targetSdkVersion 22
109 | versionCode 1
110 | versionName "1.0"
111 | ndk {
112 | abiFilters "armeabi-v7a", "x86"
113 | }
114 | // because of firestore:
115 | multiDexEnabled true
116 | }
117 | splits {
118 | abi {
119 | reset()
120 | enable enableSeparateBuildPerCPUArchitecture
121 | universalApk false // If true, also generate a universal APK
122 | include "armeabi-v7a", "x86"
123 | }
124 | }
125 | buildTypes {
126 | release {
127 | minifyEnabled enableProguardInReleaseBuilds
128 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
129 | }
130 | debug {
131 | minifyEnabled false
132 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
133 | }
134 | }
135 | // applicationVariants are e.g. debug, release
136 | applicationVariants.all { variant ->
137 | variant.outputs.each { output ->
138 | // For each separate APK per architecture, set a unique version code as described here:
139 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
140 | def versionCodes = ["armeabi-v7a":1, "x86":2]
141 | def abi = output.getFilter(OutputFile.ABI)
142 | if (abi != null) { // null for the universal-debug, universal-release variants
143 | output.versionCodeOverride =
144 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
145 | }
146 | }
147 | }
148 | }
149 |
150 | dependencies {
151 | compile(project(':react-native-firebase')) {
152 | transitive = false
153 | }
154 |
155 | // RNFirebase required dependencies
156 | compile "com.google.firebase:firebase-core:11.8.0"
157 | compile "com.google.android.gms:play-services-base:11.8.0"
158 |
159 | // RNFirebase optional dependencies
160 | compile "com.google.firebase:firebase-ads:11.8.0"
161 | compile "com.google.firebase:firebase-auth:11.8.0"
162 | compile "com.google.firebase:firebase-config:11.8.0"
163 | compile "com.google.firebase:firebase-crash:11.8.0"
164 | compile "com.google.firebase:firebase-database:11.8.0"
165 | compile "com.google.firebase:firebase-firestore:11.8.0"
166 | compile "com.google.firebase:firebase-messaging:11.8.0"
167 | compile "com.google.firebase:firebase-perf:11.8.0"
168 | compile "com.google.firebase:firebase-storage:11.8.0"
169 |
170 | compile('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
171 | transitive = true
172 | }
173 |
174 | compile fileTree(dir: "libs", include: ["*.jar"])
175 | compile "com.android.support:appcompat-v7:23.0.1"
176 | compile "com.facebook.react:react-native:+" // From node_modules
177 | }
178 |
179 | // Run this once to be able to run the application with BUCK
180 | // puts all compile dependencies into folder libs for BUCK to use
181 | task copyDownloadableDepsToLibs(type: Copy) {
182 | from configurations.compile
183 | into 'libs'
184 | }
185 |
186 | apply plugin: 'com.google.gms.google-services'
187 |
--------------------------------------------------------------------------------
/ios/PhoneAuth.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 /* PhoneAuthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* PhoneAuthTests.m */; };
16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
35 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
36 | 2DCD954D1E0B4F2C00145EB5 /* PhoneAuthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* PhoneAuthTests.m */; };
37 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
38 | 68B70528A2734DEA89C8B214 /* libRNFirebase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FBC8C743C046423C960F2237 /* libRNFirebase.a */; };
39 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
40 | 8E7D4B171F8AFD9C00699FE4 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8E7D4B161F8AFD9B00699FE4 /* GoogleService-Info.plist */; };
41 | A038CD85D39748E122AC50D7 /* libPods-PhoneAuth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 333056BA5B7ADABE709DF4A1 /* libPods-PhoneAuth.a */; };
42 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
43 | /* End PBXBuildFile section */
44 |
45 | /* Begin PBXContainerItemProxy section */
46 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
47 | isa = PBXContainerItemProxy;
48 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
49 | proxyType = 2;
50 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
51 | remoteInfo = RCTActionSheet;
52 | };
53 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
54 | isa = PBXContainerItemProxy;
55 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
56 | proxyType = 2;
57 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
58 | remoteInfo = RCTGeolocation;
59 | };
60 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
61 | isa = PBXContainerItemProxy;
62 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
63 | proxyType = 2;
64 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
65 | remoteInfo = RCTImage;
66 | };
67 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
68 | isa = PBXContainerItemProxy;
69 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
70 | proxyType = 2;
71 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
72 | remoteInfo = RCTNetwork;
73 | };
74 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
75 | isa = PBXContainerItemProxy;
76 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
77 | proxyType = 2;
78 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
79 | remoteInfo = RCTVibration;
80 | };
81 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
82 | isa = PBXContainerItemProxy;
83 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
84 | proxyType = 1;
85 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
86 | remoteInfo = PhoneAuth;
87 | };
88 | 115760FD207BE53100BCFB8B /* PBXContainerItemProxy */ = {
89 | isa = PBXContainerItemProxy;
90 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
91 | proxyType = 2;
92 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
93 | remoteInfo = jsinspector;
94 | };
95 | 115760FF207BE53100BCFB8B /* PBXContainerItemProxy */ = {
96 | isa = PBXContainerItemProxy;
97 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
98 | proxyType = 2;
99 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
100 | remoteInfo = "jsinspector-tvOS";
101 | };
102 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
103 | isa = PBXContainerItemProxy;
104 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
105 | proxyType = 2;
106 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
107 | remoteInfo = RCTSettings;
108 | };
109 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
110 | isa = PBXContainerItemProxy;
111 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
112 | proxyType = 2;
113 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
114 | remoteInfo = RCTWebSocket;
115 | };
116 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
117 | isa = PBXContainerItemProxy;
118 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
119 | proxyType = 2;
120 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
121 | remoteInfo = React;
122 | };
123 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
124 | isa = PBXContainerItemProxy;
125 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
126 | proxyType = 1;
127 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
128 | remoteInfo = "PhoneAuth-tvOS";
129 | };
130 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
131 | isa = PBXContainerItemProxy;
132 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
133 | proxyType = 2;
134 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
135 | remoteInfo = "RCTImage-tvOS";
136 | };
137 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
138 | isa = PBXContainerItemProxy;
139 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
140 | proxyType = 2;
141 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
142 | remoteInfo = "RCTLinking-tvOS";
143 | };
144 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
145 | isa = PBXContainerItemProxy;
146 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
147 | proxyType = 2;
148 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
149 | remoteInfo = "RCTNetwork-tvOS";
150 | };
151 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
152 | isa = PBXContainerItemProxy;
153 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
154 | proxyType = 2;
155 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
156 | remoteInfo = "RCTSettings-tvOS";
157 | };
158 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
159 | isa = PBXContainerItemProxy;
160 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
161 | proxyType = 2;
162 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
163 | remoteInfo = "RCTText-tvOS";
164 | };
165 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
166 | isa = PBXContainerItemProxy;
167 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
168 | proxyType = 2;
169 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
170 | remoteInfo = "RCTWebSocket-tvOS";
171 | };
172 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
173 | isa = PBXContainerItemProxy;
174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
175 | proxyType = 2;
176 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
177 | remoteInfo = "React-tvOS";
178 | };
179 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
180 | isa = PBXContainerItemProxy;
181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
182 | proxyType = 2;
183 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
184 | remoteInfo = yoga;
185 | };
186 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
187 | isa = PBXContainerItemProxy;
188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
189 | proxyType = 2;
190 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
191 | remoteInfo = "yoga-tvOS";
192 | };
193 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
194 | isa = PBXContainerItemProxy;
195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
196 | proxyType = 2;
197 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
198 | remoteInfo = cxxreact;
199 | };
200 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
201 | isa = PBXContainerItemProxy;
202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
203 | proxyType = 2;
204 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
205 | remoteInfo = "cxxreact-tvOS";
206 | };
207 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
208 | isa = PBXContainerItemProxy;
209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
210 | proxyType = 2;
211 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
212 | remoteInfo = jschelpers;
213 | };
214 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
215 | isa = PBXContainerItemProxy;
216 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
217 | proxyType = 2;
218 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
219 | remoteInfo = "jschelpers-tvOS";
220 | };
221 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
222 | isa = PBXContainerItemProxy;
223 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
224 | proxyType = 2;
225 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
226 | remoteInfo = RCTAnimation;
227 | };
228 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
229 | isa = PBXContainerItemProxy;
230 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
231 | proxyType = 2;
232 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
233 | remoteInfo = "RCTAnimation-tvOS";
234 | };
235 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
236 | isa = PBXContainerItemProxy;
237 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
238 | proxyType = 2;
239 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
240 | remoteInfo = RCTLinking;
241 | };
242 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
243 | isa = PBXContainerItemProxy;
244 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
245 | proxyType = 2;
246 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
247 | remoteInfo = RCTText;
248 | };
249 | 836AA8D91FACD2AC0010E64B /* PBXContainerItemProxy */ = {
250 | isa = PBXContainerItemProxy;
251 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
252 | proxyType = 2;
253 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
254 | remoteInfo = fishhook;
255 | };
256 | 836AA8DB1FACD2AC0010E64B /* PBXContainerItemProxy */ = {
257 | isa = PBXContainerItemProxy;
258 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
259 | proxyType = 2;
260 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
261 | remoteInfo = "fishhook-tvOS";
262 | };
263 | 836AA8E91FACD2AC0010E64B /* PBXContainerItemProxy */ = {
264 | isa = PBXContainerItemProxy;
265 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
266 | proxyType = 2;
267 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
268 | remoteInfo = "third-party";
269 | };
270 | 836AA8EB1FACD2AC0010E64B /* PBXContainerItemProxy */ = {
271 | isa = PBXContainerItemProxy;
272 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
273 | proxyType = 2;
274 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
275 | remoteInfo = "third-party-tvOS";
276 | };
277 | 836AA8ED1FACD2AC0010E64B /* PBXContainerItemProxy */ = {
278 | isa = PBXContainerItemProxy;
279 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
280 | proxyType = 2;
281 | remoteGlobalIDString = 139D7E881E25C6D100323FB7;
282 | remoteInfo = "double-conversion";
283 | };
284 | 836AA8EF1FACD2AC0010E64B /* PBXContainerItemProxy */ = {
285 | isa = PBXContainerItemProxy;
286 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
287 | proxyType = 2;
288 | remoteGlobalIDString = 3D383D621EBD27B9005632C8;
289 | remoteInfo = "double-conversion-tvOS";
290 | };
291 | 83B7621B1FE42BDD00F21A7A /* PBXContainerItemProxy */ = {
292 | isa = PBXContainerItemProxy;
293 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
294 | proxyType = 2;
295 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
296 | remoteInfo = privatedata;
297 | };
298 | 83B7621D1FE42BDD00F21A7A /* PBXContainerItemProxy */ = {
299 | isa = PBXContainerItemProxy;
300 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
301 | proxyType = 2;
302 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
303 | remoteInfo = "privatedata-tvOS";
304 | };
305 | 8E7D4B011F8AFD6F00699FE4 /* PBXContainerItemProxy */ = {
306 | isa = PBXContainerItemProxy;
307 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
308 | proxyType = 2;
309 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
310 | remoteInfo = "RCTBlob-tvOS";
311 | };
312 | 8E7D4B141F8AFD6F00699FE4 /* PBXContainerItemProxy */ = {
313 | isa = PBXContainerItemProxy;
314 | containerPortal = ADF4CB3C3BF44D3EBA8B78C4 /* RNFirebase.xcodeproj */;
315 | proxyType = 2;
316 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
317 | remoteInfo = RNFirebase;
318 | };
319 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
320 | isa = PBXContainerItemProxy;
321 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
322 | proxyType = 2;
323 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
324 | remoteInfo = RCTBlob;
325 | };
326 | /* End PBXContainerItemProxy section */
327 |
328 | /* Begin PBXFileReference section */
329 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
330 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
331 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
332 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
333 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
334 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
335 | 00E356EE1AD99517003FC87E /* PhoneAuthTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PhoneAuthTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
336 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
337 | 00E356F21AD99517003FC87E /* PhoneAuthTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PhoneAuthTests.m; sourceTree = ""; };
338 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
339 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
340 | 13B07F961A680F5B00A75B9A /* PhoneAuth.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PhoneAuth.app; sourceTree = BUILT_PRODUCTS_DIR; };
341 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = PhoneAuth/AppDelegate.h; sourceTree = ""; };
342 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = PhoneAuth/AppDelegate.m; sourceTree = ""; };
343 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
344 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = PhoneAuth/Images.xcassets; sourceTree = ""; };
345 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = PhoneAuth/Info.plist; sourceTree = ""; };
346 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = PhoneAuth/main.m; sourceTree = ""; };
347 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
348 | 2D02E47B1E0B4A5D006451C7 /* PhoneAuth-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "PhoneAuth-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
349 | 2D02E4901E0B4A5D006451C7 /* PhoneAuth-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "PhoneAuth-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
350 | 333056BA5B7ADABE709DF4A1 /* libPods-PhoneAuth.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PhoneAuth.a"; sourceTree = BUILT_PRODUCTS_DIR; };
351 | 4031C5D3468A6410BB4016B9 /* Pods-PhoneAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PhoneAuth.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PhoneAuth/Pods-PhoneAuth.debug.xcconfig"; sourceTree = ""; };
352 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
353 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
354 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
355 | 8E7D4B161F8AFD9B00699FE4 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; };
356 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
357 | ADF4CB3C3BF44D3EBA8B78C4 /* RNFirebase.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNFirebase.xcodeproj; path = "../node_modules/react-native-firebase/ios/RNFirebase.xcodeproj"; sourceTree = ""; };
358 | B7AFA8AA9A1CFD17320E9074 /* Pods-PhoneAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PhoneAuth.release.xcconfig"; path = "Pods/Target Support Files/Pods-PhoneAuth/Pods-PhoneAuth.release.xcconfig"; sourceTree = ""; };
359 | FBC8C743C046423C960F2237 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNFirebase.a; sourceTree = ""; };
360 | /* End PBXFileReference section */
361 |
362 | /* Begin PBXFrameworksBuildPhase section */
363 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
364 | isa = PBXFrameworksBuildPhase;
365 | buildActionMask = 2147483647;
366 | files = (
367 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
368 | );
369 | runOnlyForDeploymentPostprocessing = 0;
370 | };
371 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
372 | isa = PBXFrameworksBuildPhase;
373 | buildActionMask = 2147483647;
374 | files = (
375 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
376 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
377 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
378 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
379 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
380 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
381 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
382 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
383 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
384 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
385 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
386 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
387 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
388 | 68B70528A2734DEA89C8B214 /* libRNFirebase.a in Frameworks */,
389 | A038CD85D39748E122AC50D7 /* libPods-PhoneAuth.a in Frameworks */,
390 | );
391 | runOnlyForDeploymentPostprocessing = 0;
392 | };
393 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
394 | isa = PBXFrameworksBuildPhase;
395 | buildActionMask = 2147483647;
396 | files = (
397 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */,
398 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
399 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
400 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
401 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
402 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
403 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
404 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
405 | );
406 | runOnlyForDeploymentPostprocessing = 0;
407 | };
408 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
409 | isa = PBXFrameworksBuildPhase;
410 | buildActionMask = 2147483647;
411 | files = (
412 | );
413 | runOnlyForDeploymentPostprocessing = 0;
414 | };
415 | /* End PBXFrameworksBuildPhase section */
416 |
417 | /* Begin PBXGroup section */
418 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
419 | isa = PBXGroup;
420 | children = (
421 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
422 | );
423 | name = Products;
424 | sourceTree = "";
425 | };
426 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
427 | isa = PBXGroup;
428 | children = (
429 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
430 | );
431 | name = Products;
432 | sourceTree = "";
433 | };
434 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
435 | isa = PBXGroup;
436 | children = (
437 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
438 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
439 | );
440 | name = Products;
441 | sourceTree = "";
442 | };
443 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
444 | isa = PBXGroup;
445 | children = (
446 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
447 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
448 | );
449 | name = Products;
450 | sourceTree = "";
451 | };
452 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
453 | isa = PBXGroup;
454 | children = (
455 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
456 | );
457 | name = Products;
458 | sourceTree = "";
459 | };
460 | 00E356EF1AD99517003FC87E /* PhoneAuthTests */ = {
461 | isa = PBXGroup;
462 | children = (
463 | 00E356F21AD99517003FC87E /* PhoneAuthTests.m */,
464 | 00E356F01AD99517003FC87E /* Supporting Files */,
465 | );
466 | path = PhoneAuthTests;
467 | sourceTree = "";
468 | };
469 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
470 | isa = PBXGroup;
471 | children = (
472 | 00E356F11AD99517003FC87E /* Info.plist */,
473 | );
474 | name = "Supporting Files";
475 | sourceTree = "";
476 | };
477 | 139105B71AF99BAD00B5F7CC /* Products */ = {
478 | isa = PBXGroup;
479 | children = (
480 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
481 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
482 | );
483 | name = Products;
484 | sourceTree = "";
485 | };
486 | 139FDEE71B06529A00C62182 /* Products */ = {
487 | isa = PBXGroup;
488 | children = (
489 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
490 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
491 | 836AA8DA1FACD2AC0010E64B /* libfishhook.a */,
492 | 836AA8DC1FACD2AC0010E64B /* libfishhook-tvOS.a */,
493 | );
494 | name = Products;
495 | sourceTree = "";
496 | };
497 | 13B07FAE1A68108700A75B9A /* PhoneAuth */ = {
498 | isa = PBXGroup;
499 | children = (
500 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
501 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
502 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
503 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
504 | 13B07FB61A68108700A75B9A /* Info.plist */,
505 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
506 | 13B07FB71A68108700A75B9A /* main.m */,
507 | );
508 | name = PhoneAuth;
509 | sourceTree = "";
510 | };
511 | 146834001AC3E56700842450 /* Products */ = {
512 | isa = PBXGroup;
513 | children = (
514 | 146834041AC3E56700842450 /* libReact.a */,
515 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
516 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
517 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
518 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
519 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
520 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
521 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
522 | 115760FE207BE53100BCFB8B /* libjsinspector.a */,
523 | 11576100207BE53100BCFB8B /* libjsinspector-tvOS.a */,
524 | 836AA8EA1FACD2AC0010E64B /* libthird-party.a */,
525 | 836AA8EC1FACD2AC0010E64B /* libthird-party.a */,
526 | 836AA8EE1FACD2AC0010E64B /* libdouble-conversion.a */,
527 | 836AA8F01FACD2AC0010E64B /* libdouble-conversion.a */,
528 | 83B7621C1FE42BDD00F21A7A /* libprivatedata.a */,
529 | 83B7621E1FE42BDD00F21A7A /* libprivatedata-tvOS.a */,
530 | );
531 | name = Products;
532 | sourceTree = "";
533 | };
534 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
535 | isa = PBXGroup;
536 | children = (
537 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
538 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
539 | );
540 | name = Products;
541 | sourceTree = "";
542 | };
543 | 6A84F842C723265FECF9ADFD /* Pods */ = {
544 | isa = PBXGroup;
545 | children = (
546 | 4031C5D3468A6410BB4016B9 /* Pods-PhoneAuth.debug.xcconfig */,
547 | B7AFA8AA9A1CFD17320E9074 /* Pods-PhoneAuth.release.xcconfig */,
548 | );
549 | name = Pods;
550 | sourceTree = "";
551 | };
552 | 78C398B11ACF4ADC00677621 /* Products */ = {
553 | isa = PBXGroup;
554 | children = (
555 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
556 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
557 | );
558 | name = Products;
559 | sourceTree = "";
560 | };
561 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
562 | isa = PBXGroup;
563 | children = (
564 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
565 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
566 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
567 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
568 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
569 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
570 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
571 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
572 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
573 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
574 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
575 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
576 | ADF4CB3C3BF44D3EBA8B78C4 /* RNFirebase.xcodeproj */,
577 | );
578 | name = Libraries;
579 | sourceTree = "";
580 | };
581 | 832341B11AAA6A8300B99B32 /* Products */ = {
582 | isa = PBXGroup;
583 | children = (
584 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
585 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
586 | );
587 | name = Products;
588 | sourceTree = "";
589 | };
590 | 83CBB9F61A601CBA00E9B192 = {
591 | isa = PBXGroup;
592 | children = (
593 | 8E7D4B161F8AFD9B00699FE4 /* GoogleService-Info.plist */,
594 | 13B07FAE1A68108700A75B9A /* PhoneAuth */,
595 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
596 | 00E356EF1AD99517003FC87E /* PhoneAuthTests */,
597 | 83CBBA001A601CBA00E9B192 /* Products */,
598 | 6A84F842C723265FECF9ADFD /* Pods */,
599 | 927E270FF1706B5003F5613D /* Frameworks */,
600 | 8E7D4AFB1F8AFD6F00699FE4 /* Recovered References */,
601 | );
602 | indentWidth = 2;
603 | sourceTree = "";
604 | tabWidth = 2;
605 | usesTabs = 0;
606 | };
607 | 83CBBA001A601CBA00E9B192 /* Products */ = {
608 | isa = PBXGroup;
609 | children = (
610 | 13B07F961A680F5B00A75B9A /* PhoneAuth.app */,
611 | 00E356EE1AD99517003FC87E /* PhoneAuthTests.xctest */,
612 | 2D02E47B1E0B4A5D006451C7 /* PhoneAuth-tvOS.app */,
613 | 2D02E4901E0B4A5D006451C7 /* PhoneAuth-tvOSTests.xctest */,
614 | );
615 | name = Products;
616 | sourceTree = "";
617 | };
618 | 8E7D4AFB1F8AFD6F00699FE4 /* Recovered References */ = {
619 | isa = PBXGroup;
620 | children = (
621 | FBC8C743C046423C960F2237 /* libRNFirebase.a */,
622 | );
623 | name = "Recovered References";
624 | sourceTree = "";
625 | };
626 | 8E7D4B111F8AFD6F00699FE4 /* Products */ = {
627 | isa = PBXGroup;
628 | children = (
629 | 8E7D4B151F8AFD6F00699FE4 /* libRNFirebase.a */,
630 | );
631 | name = Products;
632 | sourceTree = "";
633 | };
634 | 927E270FF1706B5003F5613D /* Frameworks */ = {
635 | isa = PBXGroup;
636 | children = (
637 | 333056BA5B7ADABE709DF4A1 /* libPods-PhoneAuth.a */,
638 | );
639 | name = Frameworks;
640 | sourceTree = "";
641 | };
642 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
643 | isa = PBXGroup;
644 | children = (
645 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
646 | 8E7D4B021F8AFD6F00699FE4 /* libRCTBlob-tvOS.a */,
647 | );
648 | name = Products;
649 | sourceTree = "";
650 | };
651 | /* End PBXGroup section */
652 |
653 | /* Begin PBXNativeTarget section */
654 | 00E356ED1AD99517003FC87E /* PhoneAuthTests */ = {
655 | isa = PBXNativeTarget;
656 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "PhoneAuthTests" */;
657 | buildPhases = (
658 | 00E356EA1AD99517003FC87E /* Sources */,
659 | 00E356EB1AD99517003FC87E /* Frameworks */,
660 | 00E356EC1AD99517003FC87E /* Resources */,
661 | );
662 | buildRules = (
663 | );
664 | dependencies = (
665 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
666 | );
667 | name = PhoneAuthTests;
668 | productName = PhoneAuthTests;
669 | productReference = 00E356EE1AD99517003FC87E /* PhoneAuthTests.xctest */;
670 | productType = "com.apple.product-type.bundle.unit-test";
671 | };
672 | 13B07F861A680F5B00A75B9A /* PhoneAuth */ = {
673 | isa = PBXNativeTarget;
674 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "PhoneAuth" */;
675 | buildPhases = (
676 | 7EEED693062F803EA2B9E72F /* [CP] Check Pods Manifest.lock */,
677 | 13B07F871A680F5B00A75B9A /* Sources */,
678 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
679 | 13B07F8E1A680F5B00A75B9A /* Resources */,
680 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
681 | A301E154E716936C5988EB91 /* [CP] Embed Pods Frameworks */,
682 | E3571EA012ECF1F3BF17F035 /* [CP] Copy Pods Resources */,
683 | 83B761F71FE42BDD00F21A7A /* Crashlytics */,
684 | );
685 | buildRules = (
686 | );
687 | dependencies = (
688 | );
689 | name = PhoneAuth;
690 | productName = "Hello World";
691 | productReference = 13B07F961A680F5B00A75B9A /* PhoneAuth.app */;
692 | productType = "com.apple.product-type.application";
693 | };
694 | 2D02E47A1E0B4A5D006451C7 /* PhoneAuth-tvOS */ = {
695 | isa = PBXNativeTarget;
696 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "PhoneAuth-tvOS" */;
697 | buildPhases = (
698 | 2D02E4771E0B4A5D006451C7 /* Sources */,
699 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
700 | 2D02E4791E0B4A5D006451C7 /* Resources */,
701 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
702 | );
703 | buildRules = (
704 | );
705 | dependencies = (
706 | );
707 | name = "PhoneAuth-tvOS";
708 | productName = "PhoneAuth-tvOS";
709 | productReference = 2D02E47B1E0B4A5D006451C7 /* PhoneAuth-tvOS.app */;
710 | productType = "com.apple.product-type.application";
711 | };
712 | 2D02E48F1E0B4A5D006451C7 /* PhoneAuth-tvOSTests */ = {
713 | isa = PBXNativeTarget;
714 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "PhoneAuth-tvOSTests" */;
715 | buildPhases = (
716 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
717 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
718 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
719 | );
720 | buildRules = (
721 | );
722 | dependencies = (
723 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
724 | );
725 | name = "PhoneAuth-tvOSTests";
726 | productName = "PhoneAuth-tvOSTests";
727 | productReference = 2D02E4901E0B4A5D006451C7 /* PhoneAuth-tvOSTests.xctest */;
728 | productType = "com.apple.product-type.bundle.unit-test";
729 | };
730 | /* End PBXNativeTarget section */
731 |
732 | /* Begin PBXProject section */
733 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
734 | isa = PBXProject;
735 | attributes = {
736 | LastUpgradeCheck = 610;
737 | ORGANIZATIONNAME = Facebook;
738 | TargetAttributes = {
739 | 00E356ED1AD99517003FC87E = {
740 | CreatedOnToolsVersion = 6.2;
741 | DevelopmentTeam = L2GTKP3DFA;
742 | TestTargetID = 13B07F861A680F5B00A75B9A;
743 | };
744 | 13B07F861A680F5B00A75B9A = {
745 | DevelopmentTeam = L2GTKP3DFA;
746 | };
747 | 2D02E47A1E0B4A5D006451C7 = {
748 | CreatedOnToolsVersion = 8.2.1;
749 | ProvisioningStyle = Automatic;
750 | };
751 | 2D02E48F1E0B4A5D006451C7 = {
752 | CreatedOnToolsVersion = 8.2.1;
753 | ProvisioningStyle = Automatic;
754 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
755 | };
756 | };
757 | };
758 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "PhoneAuth" */;
759 | compatibilityVersion = "Xcode 3.2";
760 | developmentRegion = English;
761 | hasScannedForEncodings = 0;
762 | knownRegions = (
763 | en,
764 | Base,
765 | );
766 | mainGroup = 83CBB9F61A601CBA00E9B192;
767 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
768 | projectDirPath = "";
769 | projectReferences = (
770 | {
771 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
772 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
773 | },
774 | {
775 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
776 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
777 | },
778 | {
779 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
780 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
781 | },
782 | {
783 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
784 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
785 | },
786 | {
787 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
788 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
789 | },
790 | {
791 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
792 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
793 | },
794 | {
795 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
796 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
797 | },
798 | {
799 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
800 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
801 | },
802 | {
803 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
804 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
805 | },
806 | {
807 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
808 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
809 | },
810 | {
811 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
812 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
813 | },
814 | {
815 | ProductGroup = 146834001AC3E56700842450 /* Products */;
816 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
817 | },
818 | {
819 | ProductGroup = 8E7D4B111F8AFD6F00699FE4 /* Products */;
820 | ProjectRef = ADF4CB3C3BF44D3EBA8B78C4 /* RNFirebase.xcodeproj */;
821 | },
822 | );
823 | projectRoot = "";
824 | targets = (
825 | 13B07F861A680F5B00A75B9A /* PhoneAuth */,
826 | 00E356ED1AD99517003FC87E /* PhoneAuthTests */,
827 | 2D02E47A1E0B4A5D006451C7 /* PhoneAuth-tvOS */,
828 | 2D02E48F1E0B4A5D006451C7 /* PhoneAuth-tvOSTests */,
829 | );
830 | };
831 | /* End PBXProject section */
832 |
833 | /* Begin PBXReferenceProxy section */
834 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
835 | isa = PBXReferenceProxy;
836 | fileType = archive.ar;
837 | path = libRCTActionSheet.a;
838 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
839 | sourceTree = BUILT_PRODUCTS_DIR;
840 | };
841 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
842 | isa = PBXReferenceProxy;
843 | fileType = archive.ar;
844 | path = libRCTGeolocation.a;
845 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
846 | sourceTree = BUILT_PRODUCTS_DIR;
847 | };
848 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
849 | isa = PBXReferenceProxy;
850 | fileType = archive.ar;
851 | path = libRCTImage.a;
852 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
853 | sourceTree = BUILT_PRODUCTS_DIR;
854 | };
855 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
856 | isa = PBXReferenceProxy;
857 | fileType = archive.ar;
858 | path = libRCTNetwork.a;
859 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
860 | sourceTree = BUILT_PRODUCTS_DIR;
861 | };
862 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
863 | isa = PBXReferenceProxy;
864 | fileType = archive.ar;
865 | path = libRCTVibration.a;
866 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
867 | sourceTree = BUILT_PRODUCTS_DIR;
868 | };
869 | 115760FE207BE53100BCFB8B /* libjsinspector.a */ = {
870 | isa = PBXReferenceProxy;
871 | fileType = archive.ar;
872 | path = libjsinspector.a;
873 | remoteRef = 115760FD207BE53100BCFB8B /* PBXContainerItemProxy */;
874 | sourceTree = BUILT_PRODUCTS_DIR;
875 | };
876 | 11576100207BE53100BCFB8B /* libjsinspector-tvOS.a */ = {
877 | isa = PBXReferenceProxy;
878 | fileType = archive.ar;
879 | path = "libjsinspector-tvOS.a";
880 | remoteRef = 115760FF207BE53100BCFB8B /* PBXContainerItemProxy */;
881 | sourceTree = BUILT_PRODUCTS_DIR;
882 | };
883 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
884 | isa = PBXReferenceProxy;
885 | fileType = archive.ar;
886 | path = libRCTSettings.a;
887 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
888 | sourceTree = BUILT_PRODUCTS_DIR;
889 | };
890 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
891 | isa = PBXReferenceProxy;
892 | fileType = archive.ar;
893 | path = libRCTWebSocket.a;
894 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
895 | sourceTree = BUILT_PRODUCTS_DIR;
896 | };
897 | 146834041AC3E56700842450 /* libReact.a */ = {
898 | isa = PBXReferenceProxy;
899 | fileType = archive.ar;
900 | path = libReact.a;
901 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
902 | sourceTree = BUILT_PRODUCTS_DIR;
903 | };
904 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
905 | isa = PBXReferenceProxy;
906 | fileType = archive.ar;
907 | path = "libRCTImage-tvOS.a";
908 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
909 | sourceTree = BUILT_PRODUCTS_DIR;
910 | };
911 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
912 | isa = PBXReferenceProxy;
913 | fileType = archive.ar;
914 | path = "libRCTLinking-tvOS.a";
915 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
916 | sourceTree = BUILT_PRODUCTS_DIR;
917 | };
918 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
919 | isa = PBXReferenceProxy;
920 | fileType = archive.ar;
921 | path = "libRCTNetwork-tvOS.a";
922 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
923 | sourceTree = BUILT_PRODUCTS_DIR;
924 | };
925 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
926 | isa = PBXReferenceProxy;
927 | fileType = archive.ar;
928 | path = "libRCTSettings-tvOS.a";
929 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
930 | sourceTree = BUILT_PRODUCTS_DIR;
931 | };
932 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
933 | isa = PBXReferenceProxy;
934 | fileType = archive.ar;
935 | path = "libRCTText-tvOS.a";
936 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
937 | sourceTree = BUILT_PRODUCTS_DIR;
938 | };
939 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
940 | isa = PBXReferenceProxy;
941 | fileType = archive.ar;
942 | path = "libRCTWebSocket-tvOS.a";
943 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
944 | sourceTree = BUILT_PRODUCTS_DIR;
945 | };
946 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
947 | isa = PBXReferenceProxy;
948 | fileType = archive.ar;
949 | path = libReact.a;
950 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
951 | sourceTree = BUILT_PRODUCTS_DIR;
952 | };
953 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
954 | isa = PBXReferenceProxy;
955 | fileType = archive.ar;
956 | path = libyoga.a;
957 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
958 | sourceTree = BUILT_PRODUCTS_DIR;
959 | };
960 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
961 | isa = PBXReferenceProxy;
962 | fileType = archive.ar;
963 | path = libyoga.a;
964 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
965 | sourceTree = BUILT_PRODUCTS_DIR;
966 | };
967 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
968 | isa = PBXReferenceProxy;
969 | fileType = archive.ar;
970 | path = libcxxreact.a;
971 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
972 | sourceTree = BUILT_PRODUCTS_DIR;
973 | };
974 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
975 | isa = PBXReferenceProxy;
976 | fileType = archive.ar;
977 | path = libcxxreact.a;
978 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
979 | sourceTree = BUILT_PRODUCTS_DIR;
980 | };
981 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
982 | isa = PBXReferenceProxy;
983 | fileType = archive.ar;
984 | path = libjschelpers.a;
985 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
986 | sourceTree = BUILT_PRODUCTS_DIR;
987 | };
988 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
989 | isa = PBXReferenceProxy;
990 | fileType = archive.ar;
991 | path = libjschelpers.a;
992 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
993 | sourceTree = BUILT_PRODUCTS_DIR;
994 | };
995 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
996 | isa = PBXReferenceProxy;
997 | fileType = archive.ar;
998 | path = libRCTAnimation.a;
999 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1000 | sourceTree = BUILT_PRODUCTS_DIR;
1001 | };
1002 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1003 | isa = PBXReferenceProxy;
1004 | fileType = archive.ar;
1005 | path = libRCTAnimation.a;
1006 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1007 | sourceTree = BUILT_PRODUCTS_DIR;
1008 | };
1009 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1010 | isa = PBXReferenceProxy;
1011 | fileType = archive.ar;
1012 | path = libRCTLinking.a;
1013 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1014 | sourceTree = BUILT_PRODUCTS_DIR;
1015 | };
1016 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1017 | isa = PBXReferenceProxy;
1018 | fileType = archive.ar;
1019 | path = libRCTText.a;
1020 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1021 | sourceTree = BUILT_PRODUCTS_DIR;
1022 | };
1023 | 836AA8DA1FACD2AC0010E64B /* libfishhook.a */ = {
1024 | isa = PBXReferenceProxy;
1025 | fileType = archive.ar;
1026 | path = libfishhook.a;
1027 | remoteRef = 836AA8D91FACD2AC0010E64B /* PBXContainerItemProxy */;
1028 | sourceTree = BUILT_PRODUCTS_DIR;
1029 | };
1030 | 836AA8DC1FACD2AC0010E64B /* libfishhook-tvOS.a */ = {
1031 | isa = PBXReferenceProxy;
1032 | fileType = archive.ar;
1033 | path = "libfishhook-tvOS.a";
1034 | remoteRef = 836AA8DB1FACD2AC0010E64B /* PBXContainerItemProxy */;
1035 | sourceTree = BUILT_PRODUCTS_DIR;
1036 | };
1037 | 836AA8EA1FACD2AC0010E64B /* libthird-party.a */ = {
1038 | isa = PBXReferenceProxy;
1039 | fileType = archive.ar;
1040 | path = "libthird-party.a";
1041 | remoteRef = 836AA8E91FACD2AC0010E64B /* PBXContainerItemProxy */;
1042 | sourceTree = BUILT_PRODUCTS_DIR;
1043 | };
1044 | 836AA8EC1FACD2AC0010E64B /* libthird-party.a */ = {
1045 | isa = PBXReferenceProxy;
1046 | fileType = archive.ar;
1047 | path = "libthird-party.a";
1048 | remoteRef = 836AA8EB1FACD2AC0010E64B /* PBXContainerItemProxy */;
1049 | sourceTree = BUILT_PRODUCTS_DIR;
1050 | };
1051 | 836AA8EE1FACD2AC0010E64B /* libdouble-conversion.a */ = {
1052 | isa = PBXReferenceProxy;
1053 | fileType = archive.ar;
1054 | path = "libdouble-conversion.a";
1055 | remoteRef = 836AA8ED1FACD2AC0010E64B /* PBXContainerItemProxy */;
1056 | sourceTree = BUILT_PRODUCTS_DIR;
1057 | };
1058 | 836AA8F01FACD2AC0010E64B /* libdouble-conversion.a */ = {
1059 | isa = PBXReferenceProxy;
1060 | fileType = archive.ar;
1061 | path = "libdouble-conversion.a";
1062 | remoteRef = 836AA8EF1FACD2AC0010E64B /* PBXContainerItemProxy */;
1063 | sourceTree = BUILT_PRODUCTS_DIR;
1064 | };
1065 | 83B7621C1FE42BDD00F21A7A /* libprivatedata.a */ = {
1066 | isa = PBXReferenceProxy;
1067 | fileType = archive.ar;
1068 | path = libprivatedata.a;
1069 | remoteRef = 83B7621B1FE42BDD00F21A7A /* PBXContainerItemProxy */;
1070 | sourceTree = BUILT_PRODUCTS_DIR;
1071 | };
1072 | 83B7621E1FE42BDD00F21A7A /* libprivatedata-tvOS.a */ = {
1073 | isa = PBXReferenceProxy;
1074 | fileType = archive.ar;
1075 | path = "libprivatedata-tvOS.a";
1076 | remoteRef = 83B7621D1FE42BDD00F21A7A /* PBXContainerItemProxy */;
1077 | sourceTree = BUILT_PRODUCTS_DIR;
1078 | };
1079 | 8E7D4B021F8AFD6F00699FE4 /* libRCTBlob-tvOS.a */ = {
1080 | isa = PBXReferenceProxy;
1081 | fileType = archive.ar;
1082 | path = "libRCTBlob-tvOS.a";
1083 | remoteRef = 8E7D4B011F8AFD6F00699FE4 /* PBXContainerItemProxy */;
1084 | sourceTree = BUILT_PRODUCTS_DIR;
1085 | };
1086 | 8E7D4B151F8AFD6F00699FE4 /* libRNFirebase.a */ = {
1087 | isa = PBXReferenceProxy;
1088 | fileType = archive.ar;
1089 | path = libRNFirebase.a;
1090 | remoteRef = 8E7D4B141F8AFD6F00699FE4 /* PBXContainerItemProxy */;
1091 | sourceTree = BUILT_PRODUCTS_DIR;
1092 | };
1093 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1094 | isa = PBXReferenceProxy;
1095 | fileType = archive.ar;
1096 | path = libRCTBlob.a;
1097 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1098 | sourceTree = BUILT_PRODUCTS_DIR;
1099 | };
1100 | /* End PBXReferenceProxy section */
1101 |
1102 | /* Begin PBXResourcesBuildPhase section */
1103 | 00E356EC1AD99517003FC87E /* Resources */ = {
1104 | isa = PBXResourcesBuildPhase;
1105 | buildActionMask = 2147483647;
1106 | files = (
1107 | );
1108 | runOnlyForDeploymentPostprocessing = 0;
1109 | };
1110 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1111 | isa = PBXResourcesBuildPhase;
1112 | buildActionMask = 2147483647;
1113 | files = (
1114 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1115 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1116 | 8E7D4B171F8AFD9C00699FE4 /* GoogleService-Info.plist in Resources */,
1117 | );
1118 | runOnlyForDeploymentPostprocessing = 0;
1119 | };
1120 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1121 | isa = PBXResourcesBuildPhase;
1122 | buildActionMask = 2147483647;
1123 | files = (
1124 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1125 | );
1126 | runOnlyForDeploymentPostprocessing = 0;
1127 | };
1128 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1129 | isa = PBXResourcesBuildPhase;
1130 | buildActionMask = 2147483647;
1131 | files = (
1132 | );
1133 | runOnlyForDeploymentPostprocessing = 0;
1134 | };
1135 | /* End PBXResourcesBuildPhase section */
1136 |
1137 | /* Begin PBXShellScriptBuildPhase section */
1138 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1139 | isa = PBXShellScriptBuildPhase;
1140 | buildActionMask = 2147483647;
1141 | files = (
1142 | );
1143 | inputPaths = (
1144 | );
1145 | name = "Bundle React Native code and images";
1146 | outputPaths = (
1147 | );
1148 | runOnlyForDeploymentPostprocessing = 0;
1149 | shellPath = /bin/sh;
1150 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1151 | };
1152 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1153 | isa = PBXShellScriptBuildPhase;
1154 | buildActionMask = 2147483647;
1155 | files = (
1156 | );
1157 | inputPaths = (
1158 | );
1159 | name = "Bundle React Native Code And Images";
1160 | outputPaths = (
1161 | );
1162 | runOnlyForDeploymentPostprocessing = 0;
1163 | shellPath = /bin/sh;
1164 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1165 | };
1166 | 7EEED693062F803EA2B9E72F /* [CP] Check Pods Manifest.lock */ = {
1167 | isa = PBXShellScriptBuildPhase;
1168 | buildActionMask = 2147483647;
1169 | files = (
1170 | );
1171 | inputPaths = (
1172 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
1173 | "${PODS_ROOT}/Manifest.lock",
1174 | );
1175 | name = "[CP] Check Pods Manifest.lock";
1176 | outputPaths = (
1177 | "$(DERIVED_FILE_DIR)/Pods-PhoneAuth-checkManifestLockResult.txt",
1178 | );
1179 | runOnlyForDeploymentPostprocessing = 0;
1180 | shellPath = /bin/sh;
1181 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1182 | showEnvVarsInLog = 0;
1183 | };
1184 | 83B761F71FE42BDD00F21A7A /* Crashlytics */ = {
1185 | isa = PBXShellScriptBuildPhase;
1186 | buildActionMask = 2147483647;
1187 | files = (
1188 | );
1189 | inputPaths = (
1190 | );
1191 | name = Crashlytics;
1192 | outputPaths = (
1193 | );
1194 | runOnlyForDeploymentPostprocessing = 0;
1195 | shellPath = /bin/sh;
1196 | shellScript = "\"${PODS_ROOT}/Fabric/run\"";
1197 | };
1198 | A301E154E716936C5988EB91 /* [CP] Embed Pods Frameworks */ = {
1199 | isa = PBXShellScriptBuildPhase;
1200 | buildActionMask = 2147483647;
1201 | files = (
1202 | );
1203 | inputPaths = (
1204 | );
1205 | name = "[CP] Embed Pods Frameworks";
1206 | outputPaths = (
1207 | );
1208 | runOnlyForDeploymentPostprocessing = 0;
1209 | shellPath = /bin/sh;
1210 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PhoneAuth/Pods-PhoneAuth-frameworks.sh\"\n";
1211 | showEnvVarsInLog = 0;
1212 | };
1213 | E3571EA012ECF1F3BF17F035 /* [CP] Copy Pods Resources */ = {
1214 | isa = PBXShellScriptBuildPhase;
1215 | buildActionMask = 2147483647;
1216 | files = (
1217 | );
1218 | inputPaths = (
1219 | "${SRCROOT}/Pods/Target Support Files/Pods-PhoneAuth/Pods-PhoneAuth-resources.sh",
1220 | $PODS_CONFIGURATION_BUILD_DIR/gRPC/gRPCCertificates.bundle,
1221 | );
1222 | name = "[CP] Copy Pods Resources";
1223 | outputPaths = (
1224 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}",
1225 | );
1226 | runOnlyForDeploymentPostprocessing = 0;
1227 | shellPath = /bin/sh;
1228 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PhoneAuth/Pods-PhoneAuth-resources.sh\"\n";
1229 | showEnvVarsInLog = 0;
1230 | };
1231 | /* End PBXShellScriptBuildPhase section */
1232 |
1233 | /* Begin PBXSourcesBuildPhase section */
1234 | 00E356EA1AD99517003FC87E /* Sources */ = {
1235 | isa = PBXSourcesBuildPhase;
1236 | buildActionMask = 2147483647;
1237 | files = (
1238 | 00E356F31AD99517003FC87E /* PhoneAuthTests.m in Sources */,
1239 | );
1240 | runOnlyForDeploymentPostprocessing = 0;
1241 | };
1242 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1243 | isa = PBXSourcesBuildPhase;
1244 | buildActionMask = 2147483647;
1245 | files = (
1246 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1247 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1248 | );
1249 | runOnlyForDeploymentPostprocessing = 0;
1250 | };
1251 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1252 | isa = PBXSourcesBuildPhase;
1253 | buildActionMask = 2147483647;
1254 | files = (
1255 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1256 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1257 | );
1258 | runOnlyForDeploymentPostprocessing = 0;
1259 | };
1260 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1261 | isa = PBXSourcesBuildPhase;
1262 | buildActionMask = 2147483647;
1263 | files = (
1264 | 2DCD954D1E0B4F2C00145EB5 /* PhoneAuthTests.m in Sources */,
1265 | );
1266 | runOnlyForDeploymentPostprocessing = 0;
1267 | };
1268 | /* End PBXSourcesBuildPhase section */
1269 |
1270 | /* Begin PBXTargetDependency section */
1271 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1272 | isa = PBXTargetDependency;
1273 | target = 13B07F861A680F5B00A75B9A /* PhoneAuth */;
1274 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1275 | };
1276 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1277 | isa = PBXTargetDependency;
1278 | target = 2D02E47A1E0B4A5D006451C7 /* PhoneAuth-tvOS */;
1279 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1280 | };
1281 | /* End PBXTargetDependency section */
1282 |
1283 | /* Begin PBXVariantGroup section */
1284 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1285 | isa = PBXVariantGroup;
1286 | children = (
1287 | 13B07FB21A68108700A75B9A /* Base */,
1288 | );
1289 | name = LaunchScreen.xib;
1290 | path = PhoneAuth;
1291 | sourceTree = "";
1292 | };
1293 | /* End PBXVariantGroup section */
1294 |
1295 | /* Begin XCBuildConfiguration section */
1296 | 00E356F61AD99517003FC87E /* Debug */ = {
1297 | isa = XCBuildConfiguration;
1298 | buildSettings = {
1299 | BUNDLE_LOADER = "$(TEST_HOST)";
1300 | DEVELOPMENT_TEAM = L2GTKP3DFA;
1301 | GCC_PREPROCESSOR_DEFINITIONS = (
1302 | "DEBUG=1",
1303 | "$(inherited)",
1304 | );
1305 | HEADER_SEARCH_PATHS = (
1306 | "$(inherited)",
1307 | "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
1308 | );
1309 | INFOPLIST_FILE = PhoneAuthTests/Info.plist;
1310 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1311 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1312 | LIBRARY_SEARCH_PATHS = (
1313 | "$(inherited)",
1314 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1315 | );
1316 | OTHER_LDFLAGS = (
1317 | "-ObjC",
1318 | "-lc++",
1319 | );
1320 | PRODUCT_NAME = "$(TARGET_NAME)";
1321 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PhoneAuth.app/PhoneAuth";
1322 | };
1323 | name = Debug;
1324 | };
1325 | 00E356F71AD99517003FC87E /* Release */ = {
1326 | isa = XCBuildConfiguration;
1327 | buildSettings = {
1328 | BUNDLE_LOADER = "$(TEST_HOST)";
1329 | COPY_PHASE_STRIP = NO;
1330 | DEVELOPMENT_TEAM = L2GTKP3DFA;
1331 | HEADER_SEARCH_PATHS = (
1332 | "$(inherited)",
1333 | "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
1334 | );
1335 | INFOPLIST_FILE = PhoneAuthTests/Info.plist;
1336 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1337 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1338 | LIBRARY_SEARCH_PATHS = (
1339 | "$(inherited)",
1340 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1341 | );
1342 | OTHER_LDFLAGS = (
1343 | "-ObjC",
1344 | "-lc++",
1345 | );
1346 | PRODUCT_NAME = "$(TARGET_NAME)";
1347 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PhoneAuth.app/PhoneAuth";
1348 | };
1349 | name = Release;
1350 | };
1351 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1352 | isa = XCBuildConfiguration;
1353 | baseConfigurationReference = 4031C5D3468A6410BB4016B9 /* Pods-PhoneAuth.debug.xcconfig */;
1354 | buildSettings = {
1355 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1356 | CURRENT_PROJECT_VERSION = 1;
1357 | DEAD_CODE_STRIPPING = NO;
1358 | DEVELOPMENT_TEAM = L2GTKP3DFA;
1359 | DISPLAY_NAME = PhoneAuth;
1360 | HEADER_SEARCH_PATHS = (
1361 | "$(inherited)",
1362 | "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
1363 | );
1364 | INFOPLIST_FILE = PhoneAuth/Info.plist;
1365 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1366 | OTHER_LDFLAGS = (
1367 | "$(inherited)",
1368 | "-ObjC",
1369 | "-lc++",
1370 | );
1371 | PRODUCT_BUNDLE_IDENTIFIER = com.farazamiruddin.phoneauth;
1372 | PRODUCT_NAME = PhoneAuth;
1373 | VERSIONING_SYSTEM = "apple-generic";
1374 | };
1375 | name = Debug;
1376 | };
1377 | 13B07F951A680F5B00A75B9A /* Release */ = {
1378 | isa = XCBuildConfiguration;
1379 | baseConfigurationReference = B7AFA8AA9A1CFD17320E9074 /* Pods-PhoneAuth.release.xcconfig */;
1380 | buildSettings = {
1381 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1382 | CURRENT_PROJECT_VERSION = 1;
1383 | DEVELOPMENT_TEAM = L2GTKP3DFA;
1384 | DISPLAY_NAME = PhoneAuth;
1385 | HEADER_SEARCH_PATHS = (
1386 | "$(inherited)",
1387 | "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
1388 | );
1389 | INFOPLIST_FILE = PhoneAuth/Info.plist;
1390 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1391 | OTHER_LDFLAGS = (
1392 | "$(inherited)",
1393 | "-ObjC",
1394 | "-lc++",
1395 | );
1396 | PRODUCT_BUNDLE_IDENTIFIER = com.farazamiruddin.phoneauth;
1397 | PRODUCT_NAME = PhoneAuth;
1398 | VERSIONING_SYSTEM = "apple-generic";
1399 | };
1400 | name = Release;
1401 | };
1402 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1403 | isa = XCBuildConfiguration;
1404 | buildSettings = {
1405 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1406 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1407 | CLANG_ANALYZER_NONNULL = YES;
1408 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1409 | CLANG_WARN_INFINITE_RECURSION = YES;
1410 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1411 | DEBUG_INFORMATION_FORMAT = dwarf;
1412 | ENABLE_TESTABILITY = YES;
1413 | GCC_NO_COMMON_BLOCKS = YES;
1414 | HEADER_SEARCH_PATHS = (
1415 | "$(inherited)",
1416 | "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
1417 | );
1418 | INFOPLIST_FILE = "PhoneAuth-tvOS/Info.plist";
1419 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1420 | LIBRARY_SEARCH_PATHS = (
1421 | "$(inherited)",
1422 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1423 | );
1424 | OTHER_LDFLAGS = (
1425 | "-ObjC",
1426 | "-lc++",
1427 | );
1428 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.PhoneAuth-tvOS";
1429 | PRODUCT_NAME = "$(TARGET_NAME)";
1430 | SDKROOT = appletvos;
1431 | TARGETED_DEVICE_FAMILY = 3;
1432 | TVOS_DEPLOYMENT_TARGET = 9.2;
1433 | };
1434 | name = Debug;
1435 | };
1436 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
1437 | isa = XCBuildConfiguration;
1438 | buildSettings = {
1439 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1440 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1441 | CLANG_ANALYZER_NONNULL = YES;
1442 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1443 | CLANG_WARN_INFINITE_RECURSION = YES;
1444 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1445 | COPY_PHASE_STRIP = NO;
1446 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1447 | GCC_NO_COMMON_BLOCKS = YES;
1448 | HEADER_SEARCH_PATHS = (
1449 | "$(inherited)",
1450 | "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**",
1451 | );
1452 | INFOPLIST_FILE = "PhoneAuth-tvOS/Info.plist";
1453 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1454 | LIBRARY_SEARCH_PATHS = (
1455 | "$(inherited)",
1456 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1457 | );
1458 | OTHER_LDFLAGS = (
1459 | "-ObjC",
1460 | "-lc++",
1461 | );
1462 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.PhoneAuth-tvOS";
1463 | PRODUCT_NAME = "$(TARGET_NAME)";
1464 | SDKROOT = appletvos;
1465 | TARGETED_DEVICE_FAMILY = 3;
1466 | TVOS_DEPLOYMENT_TARGET = 9.2;
1467 | };
1468 | name = Release;
1469 | };
1470 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1471 | isa = XCBuildConfiguration;
1472 | buildSettings = {
1473 | BUNDLE_LOADER = "$(TEST_HOST)";
1474 | CLANG_ANALYZER_NONNULL = YES;
1475 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1476 | CLANG_WARN_INFINITE_RECURSION = YES;
1477 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1478 | DEBUG_INFORMATION_FORMAT = dwarf;
1479 | ENABLE_TESTABILITY = YES;
1480 | GCC_NO_COMMON_BLOCKS = YES;
1481 | INFOPLIST_FILE = "PhoneAuth-tvOSTests/Info.plist";
1482 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1483 | LIBRARY_SEARCH_PATHS = (
1484 | "$(inherited)",
1485 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1486 | );
1487 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.PhoneAuth-tvOSTests";
1488 | PRODUCT_NAME = "$(TARGET_NAME)";
1489 | SDKROOT = appletvos;
1490 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PhoneAuth-tvOS.app/PhoneAuth-tvOS";
1491 | TVOS_DEPLOYMENT_TARGET = 10.1;
1492 | };
1493 | name = Debug;
1494 | };
1495 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1496 | isa = XCBuildConfiguration;
1497 | buildSettings = {
1498 | BUNDLE_LOADER = "$(TEST_HOST)";
1499 | CLANG_ANALYZER_NONNULL = YES;
1500 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1501 | CLANG_WARN_INFINITE_RECURSION = YES;
1502 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1503 | COPY_PHASE_STRIP = NO;
1504 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1505 | GCC_NO_COMMON_BLOCKS = YES;
1506 | INFOPLIST_FILE = "PhoneAuth-tvOSTests/Info.plist";
1507 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1508 | LIBRARY_SEARCH_PATHS = (
1509 | "$(inherited)",
1510 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1511 | );
1512 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.PhoneAuth-tvOSTests";
1513 | PRODUCT_NAME = "$(TARGET_NAME)";
1514 | SDKROOT = appletvos;
1515 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PhoneAuth-tvOS.app/PhoneAuth-tvOS";
1516 | TVOS_DEPLOYMENT_TARGET = 10.1;
1517 | };
1518 | name = Release;
1519 | };
1520 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1521 | isa = XCBuildConfiguration;
1522 | buildSettings = {
1523 | ALWAYS_SEARCH_USER_PATHS = NO;
1524 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1525 | CLANG_CXX_LIBRARY = "libc++";
1526 | CLANG_ENABLE_MODULES = YES;
1527 | CLANG_ENABLE_OBJC_ARC = YES;
1528 | CLANG_WARN_BOOL_CONVERSION = YES;
1529 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1530 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1531 | CLANG_WARN_EMPTY_BODY = YES;
1532 | CLANG_WARN_ENUM_CONVERSION = YES;
1533 | CLANG_WARN_INT_CONVERSION = YES;
1534 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1535 | CLANG_WARN_UNREACHABLE_CODE = YES;
1536 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1537 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1538 | COPY_PHASE_STRIP = NO;
1539 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1540 | GCC_C_LANGUAGE_STANDARD = gnu99;
1541 | GCC_DYNAMIC_NO_PIC = NO;
1542 | GCC_OPTIMIZATION_LEVEL = 0;
1543 | GCC_PREPROCESSOR_DEFINITIONS = (
1544 | "DEBUG=1",
1545 | "$(inherited)",
1546 | );
1547 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1548 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1549 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1550 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1551 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1552 | GCC_WARN_UNUSED_FUNCTION = YES;
1553 | GCC_WARN_UNUSED_VARIABLE = YES;
1554 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1555 | MTL_ENABLE_DEBUG_INFO = YES;
1556 | ONLY_ACTIVE_ARCH = YES;
1557 | SDKROOT = iphoneos;
1558 | };
1559 | name = Debug;
1560 | };
1561 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1562 | isa = XCBuildConfiguration;
1563 | buildSettings = {
1564 | ALWAYS_SEARCH_USER_PATHS = NO;
1565 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1566 | CLANG_CXX_LIBRARY = "libc++";
1567 | CLANG_ENABLE_MODULES = YES;
1568 | CLANG_ENABLE_OBJC_ARC = YES;
1569 | CLANG_WARN_BOOL_CONVERSION = YES;
1570 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1571 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1572 | CLANG_WARN_EMPTY_BODY = YES;
1573 | CLANG_WARN_ENUM_CONVERSION = YES;
1574 | CLANG_WARN_INT_CONVERSION = YES;
1575 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1576 | CLANG_WARN_UNREACHABLE_CODE = YES;
1577 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1578 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1579 | COPY_PHASE_STRIP = YES;
1580 | ENABLE_NS_ASSERTIONS = NO;
1581 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1582 | GCC_C_LANGUAGE_STANDARD = gnu99;
1583 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1584 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1585 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1586 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1587 | GCC_WARN_UNUSED_FUNCTION = YES;
1588 | GCC_WARN_UNUSED_VARIABLE = YES;
1589 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1590 | MTL_ENABLE_DEBUG_INFO = NO;
1591 | SDKROOT = iphoneos;
1592 | VALIDATE_PRODUCT = YES;
1593 | };
1594 | name = Release;
1595 | };
1596 | /* End XCBuildConfiguration section */
1597 |
1598 | /* Begin XCConfigurationList section */
1599 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "PhoneAuthTests" */ = {
1600 | isa = XCConfigurationList;
1601 | buildConfigurations = (
1602 | 00E356F61AD99517003FC87E /* Debug */,
1603 | 00E356F71AD99517003FC87E /* Release */,
1604 | );
1605 | defaultConfigurationIsVisible = 0;
1606 | defaultConfigurationName = Release;
1607 | };
1608 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "PhoneAuth" */ = {
1609 | isa = XCConfigurationList;
1610 | buildConfigurations = (
1611 | 13B07F941A680F5B00A75B9A /* Debug */,
1612 | 13B07F951A680F5B00A75B9A /* Release */,
1613 | );
1614 | defaultConfigurationIsVisible = 0;
1615 | defaultConfigurationName = Release;
1616 | };
1617 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "PhoneAuth-tvOS" */ = {
1618 | isa = XCConfigurationList;
1619 | buildConfigurations = (
1620 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1621 | 2D02E4981E0B4A5E006451C7 /* Release */,
1622 | );
1623 | defaultConfigurationIsVisible = 0;
1624 | defaultConfigurationName = Release;
1625 | };
1626 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "PhoneAuth-tvOSTests" */ = {
1627 | isa = XCConfigurationList;
1628 | buildConfigurations = (
1629 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1630 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1631 | );
1632 | defaultConfigurationIsVisible = 0;
1633 | defaultConfigurationName = Release;
1634 | };
1635 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "PhoneAuth" */ = {
1636 | isa = XCConfigurationList;
1637 | buildConfigurations = (
1638 | 83CBBA201A601CBA00E9B192 /* Debug */,
1639 | 83CBBA211A601CBA00E9B192 /* Release */,
1640 | );
1641 | defaultConfigurationIsVisible = 0;
1642 | defaultConfigurationName = Release;
1643 | };
1644 | /* End XCConfigurationList section */
1645 | };
1646 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1647 | }
1648 |
--------------------------------------------------------------------------------