├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── authenticationfirebase │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── firebase.json ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── authenticationFirebase-tvOS │ └── Info.plist ├── authenticationFirebase-tvOSTests │ └── Info.plist ├── authenticationFirebase.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── authenticationFirebase-tvOS.xcscheme │ │ └── authenticationFirebase.xcscheme ├── authenticationFirebase.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── authenticationFirebase │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── authenticationFirebaseTests │ ├── Info.plist │ └── authenticationFirebaseTests.m ├── metro.config.js ├── package.json ├── patches └── .gitkeep └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore polyfills 9 | node_modules/react-native/Libraries/polyfills/.* 10 | 11 | ; These should not be required directly 12 | ; require from fbjs/lib instead: require('fbjs/lib/warning') 13 | node_modules/warning/.* 14 | 15 | ; Flow doesn't support platforms 16 | .*/Libraries/Utilities/LoadingView.js 17 | 18 | [untyped] 19 | .*/node_modules/@react-native-community/cli/.*/.* 20 | 21 | [include] 22 | 23 | [libs] 24 | node_modules/react-native/Libraries/react-native/react-native-interface.js 25 | node_modules/react-native/flow/ 26 | 27 | [options] 28 | emoji=true 29 | 30 | esproposal.optional_chaining=enable 31 | esproposal.nullish_coalescing=enable 32 | 33 | module.file_ext=.js 34 | module.file_ext=.json 35 | module.file_ext=.ios.js 36 | 37 | munge_underscores=true 38 | 39 | module.name_mapper='^react-native$' -> '/node_modules/react-native/Libraries/react-native/react-native-implementation' 40 | module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' 41 | 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\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' 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\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 51 | 52 | [lints] 53 | sketchy-null-number=warn 54 | sketchy-null-mixed=warn 55 | sketchy-number=warn 56 | untyped-type-import=warn 57 | nonstrict-import=warn 58 | deprecated-type=warn 59 | unsafe-getters-setters=warn 60 | inexact-spread=warn 61 | unnecessary-invariant=warn 62 | signature-verification-failure=warn 63 | deprecated-utility=error 64 | 65 | [strict] 66 | deprecated-type 67 | nonstrict-import 68 | sketchy-null 69 | unclear-type 70 | unsafe-getters-setters 71 | untyped-import 72 | untyped-type-import 73 | 74 | [version] 75 | ^0.105.0 76 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | 24 | # Android/IntelliJ 25 | # 26 | build/ 27 | .idea 28 | .gradle 29 | local.properties 30 | *.iml 31 | 32 | # node.js 33 | # 34 | node_modules/ 35 | npm-debug.log 36 | yarn-error.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | *.keystore 42 | !debug.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | 58 | # CocoaPods 59 | /ios/Pods/ 60 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App with Firebase 3 | * https://github.com/invertase/react-native-firebase 4 | * 5 | * @format 6 | * @flow 7 | */ 8 | 9 | import React, { Component, useState } from "react"; 10 | import { Platform, StyleSheet, UIManager, Text, View, SafeAreaView, TouchableHighlight, ActivityIndicator, TextInput, TouchableOpacity, LayoutAnimation, Alert } from "react-native"; 11 | 12 | import auth, { firebase } from "@react-native-firebase/auth"; 13 | if (Platform.OS === "android" && UIManager.setLayoutAnimationEnabledExperimental) { 14 | UIManager.setLayoutAnimationEnabledExperimental(true); 15 | } 16 | 17 | // TODO(you): import any additional firebase services that you require for your app, e.g for auth: 18 | // 1) install the npm package: `yarn add @react-native-firebase/auth@alpha` - you do not need to 19 | // run linking commands - this happens automatically at build time now 20 | // 2) rebuild your app via `yarn run run:android` or `yarn run run:ios` 21 | // 3) import the package here in your JavaScript code: `import '@react-native-firebase/auth';` 22 | // 4) The Firebase Auth service is now available to use here: `firebase.auth().currentUser` 23 | 24 | const instructions = Platform.select({ 25 | ios: "Press Cmd+R to reload,\nCmd+D or shake for dev menu", 26 | android: "Double tap R on your keyboard to reload,\nShake or press menu button for dev menu" 27 | }); 28 | 29 | const firebaseCredentials = Platform.select({ 30 | ios: "https://invertase.link/firebase-ios", 31 | android: "https://invertase.link/firebase-android" 32 | }); 33 | 34 | type Props = {}; 35 | 36 | const tag = "FIREBASE"; 37 | export default class App extends Component { 38 | state = { 39 | isLogin: false, 40 | authenticated: false 41 | }; 42 | componentDidMount() { 43 | // this.register("said1292@gmail.com", "123456"); 44 | this.__isTheUserAuthenticated(); 45 | } 46 | 47 | __isTheUserAuthenticated = () => { 48 | let user = firebase.auth().currentUser; 49 | if (user) { 50 | console.log(tag, user); 51 | 52 | this.setState({ authenticated: true }); 53 | } else { 54 | this.setState({ authenticated: false }); 55 | } 56 | }; 57 | 58 | render() { 59 | LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut); 60 | return ( 61 | 62 | {this.state.authenticated ? ( 63 | 64 | email {firebase.auth().currentUser.email} 65 | 66 | 67 | { 70 | await firebase.auth().signOut(); 71 | }} 72 | > 73 | Log Out 74 | 75 | 76 | 77 | ) : ( 78 | 79 | {this.state.isLogin ? : } 80 | 81 | 82 | this.setState(state => ({ isLogin: !state.isLogin }))}> 83 | {this.state.isLogin ? "New? Create account." : "Already have account? Log In"} 84 | 85 | 86 | 87 | )} 88 | 89 | ); 90 | } 91 | } 92 | const baseMargin = 5; 93 | const doubleBaseMargin = 10; 94 | const blue = "#ff0000"; 95 | 96 | const styles = StyleSheet.create({ 97 | containerStyle: { 98 | flex: 1, 99 | justifyContent: "space-around" 100 | }, 101 | headerContainerStyle: { 102 | flex: 0.2, 103 | alignItems: "center" 104 | }, 105 | headerTitleStyle: { 106 | color: blue, 107 | fontSize: 30, 108 | fontWeight: "bold" 109 | }, 110 | formContainerStyle: { 111 | paddingHorizontal: doubleBaseMargin, 112 | justifyContent: "space-around" 113 | }, 114 | textInputStyle: { 115 | height: 60, 116 | marginVertical: baseMargin, 117 | borderRadius: 6, 118 | paddingHorizontal: doubleBaseMargin, 119 | backgroundColor: "transparent", 120 | borderColor: "#888", 121 | borderWidth: 1 122 | }, 123 | signInButtonContainerStyle: { 124 | flex: 0.3, 125 | marginTop: doubleBaseMargin, 126 | alignItems: "flex-end", 127 | paddingHorizontal: baseMargin 128 | }, 129 | signInButtonStyle: { 130 | width: 130, 131 | height: 50, 132 | flexDirection: "row", 133 | justifyContent: "center", 134 | borderRadius: 130 / 4, 135 | alignItems: "center", 136 | backgroundColor: "white" 137 | }, 138 | signInButtonTextStyle: { 139 | color: "black", 140 | textAlign: "center", 141 | alignSelf: "center", 142 | fontSize: 14, 143 | fontWeight: "bold", 144 | marginHorizontal: baseMargin 145 | }, 146 | signInWithGoogleButtonContainerStyle: { 147 | flex: 0.2, 148 | paddingHorizontal: doubleBaseMargin 149 | }, 150 | signInWithGoogleButtonStyle: { 151 | height: 50, 152 | flexDirection: "row", 153 | justifyContent: "center", 154 | borderRadius: 130 / 4, 155 | alignItems: "center", 156 | backgroundColor: "white" 157 | }, 158 | signInWithGoogleButtonTextStyle: { 159 | color: "black", 160 | textAlign: "center", 161 | alignSelf: "center", 162 | fontSize: 14, 163 | fontWeight: "bold", 164 | 165 | marginHorizontal: baseMargin 166 | }, 167 | errorLabelContainerStyle: { 168 | flex: 0.1, 169 | alignItems: "center", 170 | justifyContent: "center" 171 | }, 172 | errorTextStyle: { 173 | color: "red", 174 | textAlign: "center" 175 | }, 176 | loginButtonContainerStyle: { 177 | flex: 0.2, 178 | paddingHorizontal: baseMargin, 179 | justifyContent: "center", 180 | alignItems: "center" 181 | }, 182 | loginButtonStyle: { 183 | alignItems: "center" 184 | }, 185 | loginButtonTextStyle: { 186 | color: blue 187 | } 188 | }); 189 | 190 | const __filterError = error => { 191 | let message = ""; 192 | let index = error.indexOf("]"); 193 | message = error.substr(index + 1, error.length - 1); 194 | 195 | return message; 196 | }; 197 | 198 | const __isValidEmail = email => { 199 | var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; 200 | return re.test(String(email).toLowerCase()); 201 | }; 202 | const LoginComponent = () => { 203 | const [email, setEmail] = useState(""); 204 | const [password, setPassword] = useState(""); 205 | const [fetching, setFetching] = useState(false); 206 | const [error, setError] = useState(""); 207 | const [isValid, setValid] = useState(true); 208 | const __doLogin = () => { 209 | if (!email) { 210 | setError("Email required *"); 211 | setValid(false); 212 | return; 213 | } else if (!password && password.trim() && password.length > 6) { 214 | setError("Weak password, minimum 5 chars"); 215 | setValid(false); 216 | return; 217 | } else if (!__isValidEmail(email)) { 218 | setError("Invalid Email"); 219 | setValid(false); 220 | return; 221 | } 222 | let signInRequestData = { 223 | email, 224 | password 225 | }; 226 | 227 | __doSingIn(email, password); 228 | }; 229 | 230 | const __doSingIn = async (email, password) => { 231 | try { 232 | let response = await auth().signInWithEmailAndPassword(email, password); 233 | if (response && response.user) { 234 | Alert.alert("Success ✅", "Logged successfully"); 235 | } 236 | } catch (e) { 237 | console.error(e.message); 238 | } 239 | }; 240 | 241 | return ( 242 | 243 | {!!fetching && } 244 | 245 | Log In 246 | 247 | 248 | { 255 | // let isValid = this.state.isValid; 256 | // isValid["email"] = !this.__isValidEmail(text); 257 | setValid(__isValidEmail(text)); 258 | setEmail(text); 259 | }} 260 | error={isValid} 261 | /> 262 | setPassword(text)} /> 263 | 264 | {error ? ( 265 | 266 | {error} 267 | 268 | ) : null} 269 | 270 | 271 | 272 | 278 | Continue 279 | 280 | 281 | 282 | 283 | ); 284 | }; 285 | 286 | const SigInComponent = () => { 287 | const [email, setEmail] = useState(""); 288 | const [password, setPassword] = useState(""); 289 | const [fetching, setFetching] = useState(false); 290 | const [error, setError] = useState(""); 291 | const [isValid, setValid] = useState(true); 292 | const __doSignUp = () => { 293 | if (!email) { 294 | setError("Email required *"); 295 | setValid(false); 296 | return; 297 | } else if (!password && password.trim() && password.length > 6) { 298 | setError("Weak password, minimum 5 chars"); 299 | setValid(false); 300 | return; 301 | } else if (!__isValidEmail(email)) { 302 | setError("Invalid Email"); 303 | setValid(false); 304 | return; 305 | } 306 | 307 | __doCreateUser(email, password); 308 | }; 309 | 310 | const __doCreateUser = async (email, password) => { 311 | try { 312 | let response = await auth().createUserWithEmailAndPassword(email, password); 313 | if (response && response.user) { 314 | Alert.alert("Success ✅", "Account created successfully"); 315 | } 316 | } catch (e) { 317 | console.error(e.message); 318 | } 319 | }; 320 | 321 | return ( 322 | 323 | {!!fetching && } 324 | 325 | Sign Up 326 | 327 | 328 | { 335 | setError; 336 | setEmail(text); 337 | }} 338 | error={isValid} 339 | /> 340 | 341 | setPassword(text)} /> 342 | 343 | {error ? ( 344 | 345 | {error} 346 | 347 | ) : null} 348 | 349 | 350 | 356 | Continue 357 | 358 | 359 | 360 | 361 | ); 362 | }; 363 | -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /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 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.authenticationfirebase", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.authenticationfirebase", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format 22 | * bundleCommand: "ram-bundle", 23 | * 24 | * // whether to bundle JS and assets in debug mode 25 | * bundleInDebug: false, 26 | * 27 | * // whether to bundle JS and assets in release mode 28 | * bundleInRelease: true, 29 | * 30 | * // whether to bundle JS and assets in another build variant (if configured). 31 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 32 | * // The configuration property can be in the following formats 33 | * // 'bundleIn${productFlavor}${buildType}' 34 | * // 'bundleIn${buildType}' 35 | * // bundleInFreeDebug: true, 36 | * // bundleInPaidRelease: true, 37 | * // bundleInBeta: true, 38 | * 39 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 40 | * // for example: to disable dev mode in the staging build type (if configured) 41 | * devDisabledInStaging: true, 42 | * // The configuration property can be in the following formats 43 | * // 'devDisabledIn${productFlavor}${buildType}' 44 | * // 'devDisabledIn${buildType}' 45 | * 46 | * // the root of your project, i.e. where "package.json" lives 47 | * root: "../../", 48 | * 49 | * // where to put the JS bundle asset in debug mode 50 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 51 | * 52 | * // where to put the JS bundle asset in release mode 53 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 54 | * 55 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 56 | * // require('./image.png')), in debug mode 57 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 58 | * 59 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 60 | * // require('./image.png')), in release mode 61 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 62 | * 63 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 64 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 65 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 66 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 67 | * // for example, you might want to remove it from here. 68 | * inputExcludes: ["android/**", "ios/**"], 69 | * 70 | * // override which node gets called and with what additional arguments 71 | * nodeExecutableAndArgs: ["node"], 72 | * 73 | * // supply additional arguments to the packager 74 | * extraPackagerArgs: [] 75 | * ] 76 | */ 77 | 78 | project.ext.react = [ 79 | entryFile: "index.js", 80 | enableHermes: false, // clean and rebuild if changing 81 | ] 82 | 83 | apply from: "../../node_modules/react-native/react.gradle" 84 | 85 | /** 86 | * Set this to true to create two separate APKs instead of one: 87 | * - An APK that only works on ARM devices 88 | * - An APK that only works on x86 devices 89 | * The advantage is the size of the APK is reduced by about 4MB. 90 | * Upload all the APKs to the Play Store and people will download 91 | * the correct one based on the CPU architecture of their device. 92 | */ 93 | def enableSeparateBuildPerCPUArchitecture = false 94 | 95 | /** 96 | * Run Proguard to shrink the Java bytecode in release builds. 97 | */ 98 | def enableProguardInReleaseBuilds = false 99 | 100 | /** 101 | * The preferred build flavor of JavaScriptCore. 102 | * 103 | * For example, to use the international variant, you can use: 104 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 105 | * 106 | * The international variant includes ICU i18n library and necessary data 107 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 108 | * give correct results when using with locales other than en-US. Note that 109 | * this variant is about 6MiB larger per architecture than default. 110 | */ 111 | def jscFlavor = 'org.webkit:android-jsc:+' 112 | 113 | /** 114 | * Whether to enable the Hermes VM. 115 | * 116 | * This should be set on project.ext.react and mirrored here. If it is not set 117 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 118 | * and the benefits of using Hermes will therefore be sharply reduced. 119 | */ 120 | def enableHermes = project.ext.react.get("enableHermes", false); 121 | 122 | android { 123 | compileSdkVersion rootProject.ext.compileSdkVersion 124 | 125 | compileOptions { 126 | sourceCompatibility JavaVersion.VERSION_1_8 127 | targetCompatibility JavaVersion.VERSION_1_8 128 | } 129 | 130 | defaultConfig { 131 | applicationId "com.authenticationfirebase" 132 | minSdkVersion rootProject.ext.minSdkVersion 133 | targetSdkVersion rootProject.ext.targetSdkVersion 134 | versionCode 1 135 | versionName "1.0" 136 | aaptOptions{ 137 | noCompress "tflite","model" 138 | } 139 | } 140 | splits { 141 | abi { 142 | reset() 143 | enable enableSeparateBuildPerCPUArchitecture 144 | universalApk false // If true, also generate a universal APK 145 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 146 | } 147 | } 148 | signingConfigs { 149 | debug { 150 | storeFile file('debug.keystore') 151 | storePassword 'android' 152 | keyAlias 'androiddebugkey' 153 | keyPassword 'android' 154 | } 155 | } 156 | buildTypes { 157 | debug { 158 | signingConfig signingConfigs.debug 159 | } 160 | release { 161 | // Caution! In production, you need to generate your own keystore file. 162 | // see https://facebook.github.io/react-native/docs/signed-apk-android. 163 | signingConfig signingConfigs.debug 164 | minifyEnabled enableProguardInReleaseBuilds 165 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 166 | } 167 | } 168 | // applicationVariants are e.g. debug, release 169 | applicationVariants.all { variant -> 170 | variant.outputs.each { output -> 171 | // For each separate APK per architecture, set a unique version code as described here: 172 | // https://developer.android.com/studio/build/configure-apk-splits.html 173 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] 174 | def abi = output.getFilter(OutputFile.ABI) 175 | if (abi != null) { // null for the universal-debug, universal-release variants 176 | output.versionCodeOverride = 177 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 178 | } 179 | 180 | } 181 | } 182 | } 183 | 184 | dependencies { 185 | implementation fileTree(dir: "libs", include: ["*.jar"]) 186 | implementation "com.facebook.react:react-native:+" // From node_modules 187 | 188 | if (enableHermes) { 189 | def hermesPath = "../../node_modules/hermes-engine/android/"; 190 | debugImplementation files(hermesPath + "hermes-debug.aar") 191 | releaseImplementation files(hermesPath + "hermes-release.aar") 192 | } else { 193 | implementation jscFlavor 194 | } 195 | } 196 | 197 | // Run this once to be able to run the application with BUCK 198 | // puts all compile dependencies into folder libs for BUCK to use 199 | task copyDownloadableDepsToLibs(type: Copy) { 200 | from configurations.compile 201 | into 'libs' 202 | } 203 | 204 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 205 | apply plugin: 'com.google.gms.google-services' 206 | apply plugin: 'com.google.gms.google-services' 207 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 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 | -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/debug.keystore -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/authenticationfirebase/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.authenticationfirebase; 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 "authenticationFirebase"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/authenticationfirebase/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.authenticationfirebase; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | import com.facebook.react.PackageList; 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | import java.lang.reflect.InvocationTargetException; 11 | import java.util.List; 12 | 13 | public class MainApplication extends Application implements ReactApplication { 14 | 15 | private final ReactNativeHost mReactNativeHost = 16 | new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | @SuppressWarnings("UnnecessaryLocalVariable") 25 | List packages = new PackageList(this).getPackages(); 26 | // Packages that cannot be autolinked yet can be added manually here, for example: 27 | // packages.add(new MyReactNativePackage()); 28 | return packages; 29 | } 30 | 31 | @Override 32 | protected String getJSMainModuleName() { 33 | return "index"; 34 | } 35 | }; 36 | 37 | @Override 38 | public ReactNativeHost getReactNativeHost() { 39 | return mReactNativeHost; 40 | } 41 | 42 | @Override 43 | public void onCreate() { 44 | super.onCreate(); 45 | SoLoader.init(this, /* native exopackage */ false); 46 | initializeFlipper(this); // Remove this line if you don't want Flipper enabled 47 | } 48 | 49 | /** 50 | * Loads Flipper in React Native templates. 51 | * 52 | * @param context 53 | */ 54 | private static void initializeFlipper(Context context) { 55 | if (BuildConfig.DEBUG) { 56 | try { 57 | /* 58 | We use reflection here to pick up the class that initializes Flipper, 59 | since Flipper library is not available in release mode 60 | */ 61 | Class aClass = Class.forName("com.facebook.flipper.ReactNativeFlipper"); 62 | aClass.getMethod("initializeFlipper", Context.class).invoke(null, context); 63 | } catch (ClassNotFoundException e) { 64 | e.printStackTrace(); 65 | } catch (NoSuchMethodException e) { 66 | e.printStackTrace(); 67 | } catch (IllegalAccessException e) { 68 | e.printStackTrace(); 69 | } catch (InvocationTargetException e) { 70 | e.printStackTrace(); 71 | } 72 | } 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | authenticationFirebase 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | } 10 | repositories { 11 | google() 12 | jcenter() 13 | mavenCentral() 14 | } 15 | dependencies { 16 | classpath 'com.android.tools.build:gradle:3.5.2' 17 | classpath 'com.google.gms:google-services:4.2.0' 18 | 19 | // NOTE: Do not place your application dependencies here; they belong 20 | // in the individual module build.gradle files 21 | } 22 | } 23 | 24 | allprojects { 25 | repositories { 26 | mavenLocal() 27 | maven { 28 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 29 | url("$rootDir/../node_modules/react-native/android") 30 | } 31 | maven { 32 | // Android JSC is installed from npm 33 | url("$rootDir/../node_modules/jsc-android/dist") 34 | } 35 | 36 | google() 37 | jcenter() 38 | maven { url 'https://jitpack.io' } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useAndroidX=true 21 | android.enableJetifier=true 22 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | # Determine the Java command to use to start the JVM. 86 | if [ -n "$JAVA_HOME" ] ; then 87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 88 | # IBM's JDK on AIX uses strange locations for the executables 89 | JAVACMD="$JAVA_HOME/jre/sh/java" 90 | else 91 | JAVACMD="$JAVA_HOME/bin/java" 92 | fi 93 | if [ ! -x "$JAVACMD" ] ; then 94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 95 | 96 | Please set the JAVA_HOME variable in your environment to match the 97 | location of your Java installation." 98 | fi 99 | else 100 | JAVACMD="java" 101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 102 | 103 | Please set the JAVA_HOME variable in your environment to match the 104 | location of your Java installation." 105 | fi 106 | 107 | # Increase the maximum file descriptors if we can. 108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 109 | MAX_FD_LIMIT=`ulimit -H -n` 110 | if [ $? -eq 0 ] ; then 111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 112 | MAX_FD="$MAX_FD_LIMIT" 113 | fi 114 | ulimit -n $MAX_FD 115 | if [ $? -ne 0 ] ; then 116 | warn "Could not set maximum file descriptor limit: $MAX_FD" 117 | fi 118 | else 119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 120 | fi 121 | fi 122 | 123 | # For Darwin, add options to specify how the application appears in the dock 124 | if $darwin; then 125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 126 | fi 127 | 128 | # For Cygwin, switch paths to Windows format before running java 129 | if $cygwin ; then 130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 132 | JAVACMD=`cygpath --unix "$JAVACMD"` 133 | 134 | # We build the pattern for arguments to be converted via cygpath 135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 136 | SEP="" 137 | for dir in $ROOTDIRSRAW ; do 138 | ROOTDIRS="$ROOTDIRS$SEP$dir" 139 | SEP="|" 140 | done 141 | OURCYGPATTERN="(^($ROOTDIRS))" 142 | # Add a user-defined pattern to the cygpath arguments 143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 145 | fi 146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 147 | i=0 148 | for arg in "$@" ; do 149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 151 | 152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 154 | else 155 | eval `echo args$i`="\"$arg\"" 156 | fi 157 | i=$((i+1)) 158 | done 159 | case $i in 160 | (0) set -- ;; 161 | (1) set -- "$args0" ;; 162 | (2) set -- "$args0" "$args1" ;; 163 | (3) set -- "$args0" "$args1" "$args2" ;; 164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 170 | esac 171 | fi 172 | 173 | # Escape application args 174 | save () { 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 176 | echo " " 177 | } 178 | APP_ARGS=$(save "$@") 179 | 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 182 | 183 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 185 | cd "$(dirname "$0")" 186 | fi 187 | 188 | exec "$JAVACMD" "$@" 189 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem http://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 34 | 35 | @rem Find java.exe 36 | if defined JAVA_HOME goto findJavaFromJavaHome 37 | 38 | set JAVA_EXE=java.exe 39 | %JAVA_EXE% -version >NUL 2>&1 40 | if "%ERRORLEVEL%" == "0" goto init 41 | 42 | echo. 43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 44 | echo. 45 | echo Please set the JAVA_HOME variable in your environment to match the 46 | echo location of your Java installation. 47 | 48 | goto fail 49 | 50 | :findJavaFromJavaHome 51 | set JAVA_HOME=%JAVA_HOME:"=% 52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 53 | 54 | if exist "%JAVA_EXE%" goto init 55 | 56 | echo. 57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 58 | echo. 59 | echo Please set the JAVA_HOME variable in your environment to match the 60 | echo location of your Java installation. 61 | 62 | goto fail 63 | 64 | :init 65 | @rem Get command-line arguments, handling Windows variants 66 | 67 | if not "%OS%" == "Windows_NT" goto win9xME_args 68 | 69 | :win9xME_args 70 | @rem Slurp the command line arguments. 71 | set CMD_LINE_ARGS= 72 | set _SKIP=2 73 | 74 | :win9xME_args_slurp 75 | if "x%~1" == "x" goto execute 76 | 77 | set CMD_LINE_ARGS=%* 78 | 79 | :execute 80 | @rem Setup the command line 81 | 82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 83 | 84 | @rem Execute Gradle 85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 86 | 87 | :end 88 | @rem End local scope for the variables with windows NT shell 89 | if "%ERRORLEVEL%"=="0" goto mainEnd 90 | 91 | :fail 92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 93 | rem the _cmd.exe /c_ return code! 94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 95 | exit /b 1 96 | 97 | :mainEnd 98 | if "%OS%"=="Windows_NT" endlocal 99 | 100 | :omega 101 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'authenticationFirebase' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "authenticationFirebase", 3 | "displayName": "authenticationFirebase" 4 | } 5 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-native": {} 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import { AppRegistry } from 'react-native'; 6 | import App from './App'; 7 | import { name as appName } from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '10.0' 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' 3 | 4 | # To override the React Native Firebase iOS SDK versions used uncomment any of the below and change the version 5 | # $FirebaseSDKVersion = '6.8.1' 6 | # $FabricSDKVersion = '1.6.0' 7 | # $CrashlyticsSDKVersion = '3.1.0' 8 | 9 | target 'authenticationFirebase' do 10 | # Pods for authenticationFirebase 11 | pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" 12 | pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec" 13 | pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired" 14 | pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety" 15 | pod 'React', :path => '../node_modules/react-native/' 16 | pod 'React-Core', :path => '../node_modules/react-native/' 17 | pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules' 18 | pod 'React-Core/DevSupport', :path => '../node_modules/react-native/' 19 | pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS' 20 | pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation' 21 | pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob' 22 | pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image' 23 | pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS' 24 | pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network' 25 | pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings' 26 | pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text' 27 | pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration' 28 | pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/' 29 | pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' 30 | pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' 31 | pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' 32 | pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' 33 | pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon" 34 | pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon" 35 | pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga' 36 | 37 | pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' 38 | pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' 39 | pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' 40 | 41 | target 'authenticationFirebaseTests' do 42 | inherit! :search_paths 43 | # Pods for testing 44 | end 45 | 46 | use_native_modules! 47 | end 48 | 49 | target 'authenticationFirebase-tvOS' do 50 | # Pods for authenticationFirebase-tvOS 51 | 52 | target 'authenticationFirebase-tvOSTests' do 53 | inherit! :search_paths 54 | # Pods for testing 55 | end 56 | 57 | end 58 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost-for-react-native (1.63.0) 3 | - DoubleConversion (1.1.6) 4 | - FBLazyVector (0.61.5) 5 | - FBReactNativeSpec (0.61.5): 6 | - Folly (= 2018.10.22.00) 7 | - RCTRequired (= 0.61.5) 8 | - RCTTypeSafety (= 0.61.5) 9 | - React-Core (= 0.61.5) 10 | - React-jsi (= 0.61.5) 11 | - ReactCommon/turbomodule/core (= 0.61.5) 12 | - Firebase/Auth (6.13.0): 13 | - Firebase/CoreOnly 14 | - FirebaseAuth (~> 6.4.0) 15 | - Firebase/Core (6.13.0): 16 | - Firebase/CoreOnly 17 | - FirebaseAnalytics (= 6.1.6) 18 | - Firebase/CoreOnly (6.13.0): 19 | - FirebaseCore (= 6.4.0) 20 | - FirebaseAnalytics (6.1.6): 21 | - FirebaseCore (~> 6.4) 22 | - FirebaseInstanceID (~> 4.2) 23 | - GoogleAppMeasurement (= 6.1.6) 24 | - GoogleUtilities/AppDelegateSwizzler (~> 6.0) 25 | - GoogleUtilities/MethodSwizzler (~> 6.0) 26 | - GoogleUtilities/Network (~> 6.0) 27 | - "GoogleUtilities/NSData+zlib (~> 6.0)" 28 | - nanopb (= 0.3.9011) 29 | - FirebaseAuth (6.4.2): 30 | - FirebaseAuthInterop (~> 1.0) 31 | - FirebaseCore (~> 6.2) 32 | - GoogleUtilities/AppDelegateSwizzler (~> 6.2) 33 | - GoogleUtilities/Environment (~> 6.2) 34 | - GTMSessionFetcher/Core (~> 1.1) 35 | - FirebaseAuthInterop (1.0.0) 36 | - FirebaseCore (6.4.0): 37 | - FirebaseCoreDiagnostics (~> 1.0) 38 | - FirebaseCoreDiagnosticsInterop (~> 1.0) 39 | - GoogleUtilities/Environment (~> 6.2) 40 | - GoogleUtilities/Logger (~> 6.2) 41 | - FirebaseCoreDiagnostics (1.2.0): 42 | - FirebaseCoreDiagnosticsInterop (~> 1.2) 43 | - GoogleDataTransportCCTSupport (~> 1.3) 44 | - GoogleUtilities/Environment (~> 6.5) 45 | - GoogleUtilities/Logger (~> 6.5) 46 | - nanopb (~> 0.3.901) 47 | - FirebaseCoreDiagnosticsInterop (1.2.0) 48 | - FirebaseInstanceID (4.2.7): 49 | - FirebaseCore (~> 6.0) 50 | - GoogleUtilities/Environment (~> 6.0) 51 | - GoogleUtilities/UserDefaults (~> 6.0) 52 | - Folly (2018.10.22.00): 53 | - boost-for-react-native 54 | - DoubleConversion 55 | - Folly/Default (= 2018.10.22.00) 56 | - glog 57 | - Folly/Default (2018.10.22.00): 58 | - boost-for-react-native 59 | - DoubleConversion 60 | - glog 61 | - glog (0.3.5) 62 | - GoogleAppMeasurement (6.1.6): 63 | - GoogleUtilities/AppDelegateSwizzler (~> 6.0) 64 | - GoogleUtilities/MethodSwizzler (~> 6.0) 65 | - GoogleUtilities/Network (~> 6.0) 66 | - "GoogleUtilities/NSData+zlib (~> 6.0)" 67 | - nanopb (= 0.3.9011) 68 | - GoogleDataTransport (3.3.1) 69 | - GoogleDataTransportCCTSupport (1.3.1): 70 | - GoogleDataTransport (~> 3.3) 71 | - nanopb (~> 0.3.901) 72 | - GoogleUtilities/AppDelegateSwizzler (6.5.1): 73 | - GoogleUtilities/Environment 74 | - GoogleUtilities/Logger 75 | - GoogleUtilities/Network 76 | - GoogleUtilities/Environment (6.5.1) 77 | - GoogleUtilities/Logger (6.5.1): 78 | - GoogleUtilities/Environment 79 | - GoogleUtilities/MethodSwizzler (6.5.1): 80 | - GoogleUtilities/Logger 81 | - GoogleUtilities/Network (6.5.1): 82 | - GoogleUtilities/Logger 83 | - "GoogleUtilities/NSData+zlib" 84 | - GoogleUtilities/Reachability 85 | - "GoogleUtilities/NSData+zlib (6.5.1)" 86 | - GoogleUtilities/Reachability (6.5.1): 87 | - GoogleUtilities/Logger 88 | - GoogleUtilities/UserDefaults (6.5.1): 89 | - GoogleUtilities/Logger 90 | - GTMSessionFetcher/Core (1.3.1) 91 | - nanopb (0.3.9011): 92 | - nanopb/decode (= 0.3.9011) 93 | - nanopb/encode (= 0.3.9011) 94 | - nanopb/decode (0.3.9011) 95 | - nanopb/encode (0.3.9011) 96 | - RCTRequired (0.61.5) 97 | - RCTTypeSafety (0.61.5): 98 | - FBLazyVector (= 0.61.5) 99 | - Folly (= 2018.10.22.00) 100 | - RCTRequired (= 0.61.5) 101 | - React-Core (= 0.61.5) 102 | - React (0.61.5): 103 | - React-Core (= 0.61.5) 104 | - React-Core/DevSupport (= 0.61.5) 105 | - React-Core/RCTWebSocket (= 0.61.5) 106 | - React-RCTActionSheet (= 0.61.5) 107 | - React-RCTAnimation (= 0.61.5) 108 | - React-RCTBlob (= 0.61.5) 109 | - React-RCTImage (= 0.61.5) 110 | - React-RCTLinking (= 0.61.5) 111 | - React-RCTNetwork (= 0.61.5) 112 | - React-RCTSettings (= 0.61.5) 113 | - React-RCTText (= 0.61.5) 114 | - React-RCTVibration (= 0.61.5) 115 | - React-Core (0.61.5): 116 | - Folly (= 2018.10.22.00) 117 | - glog 118 | - React-Core/Default (= 0.61.5) 119 | - React-cxxreact (= 0.61.5) 120 | - React-jsi (= 0.61.5) 121 | - React-jsiexecutor (= 0.61.5) 122 | - Yoga 123 | - React-Core/CoreModulesHeaders (0.61.5): 124 | - Folly (= 2018.10.22.00) 125 | - glog 126 | - React-Core/Default 127 | - React-cxxreact (= 0.61.5) 128 | - React-jsi (= 0.61.5) 129 | - React-jsiexecutor (= 0.61.5) 130 | - Yoga 131 | - React-Core/Default (0.61.5): 132 | - Folly (= 2018.10.22.00) 133 | - glog 134 | - React-cxxreact (= 0.61.5) 135 | - React-jsi (= 0.61.5) 136 | - React-jsiexecutor (= 0.61.5) 137 | - Yoga 138 | - React-Core/DevSupport (0.61.5): 139 | - Folly (= 2018.10.22.00) 140 | - glog 141 | - React-Core/Default (= 0.61.5) 142 | - React-Core/RCTWebSocket (= 0.61.5) 143 | - React-cxxreact (= 0.61.5) 144 | - React-jsi (= 0.61.5) 145 | - React-jsiexecutor (= 0.61.5) 146 | - React-jsinspector (= 0.61.5) 147 | - Yoga 148 | - React-Core/RCTActionSheetHeaders (0.61.5): 149 | - Folly (= 2018.10.22.00) 150 | - glog 151 | - React-Core/Default 152 | - React-cxxreact (= 0.61.5) 153 | - React-jsi (= 0.61.5) 154 | - React-jsiexecutor (= 0.61.5) 155 | - Yoga 156 | - React-Core/RCTAnimationHeaders (0.61.5): 157 | - Folly (= 2018.10.22.00) 158 | - glog 159 | - React-Core/Default 160 | - React-cxxreact (= 0.61.5) 161 | - React-jsi (= 0.61.5) 162 | - React-jsiexecutor (= 0.61.5) 163 | - Yoga 164 | - React-Core/RCTBlobHeaders (0.61.5): 165 | - Folly (= 2018.10.22.00) 166 | - glog 167 | - React-Core/Default 168 | - React-cxxreact (= 0.61.5) 169 | - React-jsi (= 0.61.5) 170 | - React-jsiexecutor (= 0.61.5) 171 | - Yoga 172 | - React-Core/RCTImageHeaders (0.61.5): 173 | - Folly (= 2018.10.22.00) 174 | - glog 175 | - React-Core/Default 176 | - React-cxxreact (= 0.61.5) 177 | - React-jsi (= 0.61.5) 178 | - React-jsiexecutor (= 0.61.5) 179 | - Yoga 180 | - React-Core/RCTLinkingHeaders (0.61.5): 181 | - Folly (= 2018.10.22.00) 182 | - glog 183 | - React-Core/Default 184 | - React-cxxreact (= 0.61.5) 185 | - React-jsi (= 0.61.5) 186 | - React-jsiexecutor (= 0.61.5) 187 | - Yoga 188 | - React-Core/RCTNetworkHeaders (0.61.5): 189 | - Folly (= 2018.10.22.00) 190 | - glog 191 | - React-Core/Default 192 | - React-cxxreact (= 0.61.5) 193 | - React-jsi (= 0.61.5) 194 | - React-jsiexecutor (= 0.61.5) 195 | - Yoga 196 | - React-Core/RCTSettingsHeaders (0.61.5): 197 | - Folly (= 2018.10.22.00) 198 | - glog 199 | - React-Core/Default 200 | - React-cxxreact (= 0.61.5) 201 | - React-jsi (= 0.61.5) 202 | - React-jsiexecutor (= 0.61.5) 203 | - Yoga 204 | - React-Core/RCTTextHeaders (0.61.5): 205 | - Folly (= 2018.10.22.00) 206 | - glog 207 | - React-Core/Default 208 | - React-cxxreact (= 0.61.5) 209 | - React-jsi (= 0.61.5) 210 | - React-jsiexecutor (= 0.61.5) 211 | - Yoga 212 | - React-Core/RCTVibrationHeaders (0.61.5): 213 | - Folly (= 2018.10.22.00) 214 | - glog 215 | - React-Core/Default 216 | - React-cxxreact (= 0.61.5) 217 | - React-jsi (= 0.61.5) 218 | - React-jsiexecutor (= 0.61.5) 219 | - Yoga 220 | - React-Core/RCTWebSocket (0.61.5): 221 | - Folly (= 2018.10.22.00) 222 | - glog 223 | - React-Core/Default (= 0.61.5) 224 | - React-cxxreact (= 0.61.5) 225 | - React-jsi (= 0.61.5) 226 | - React-jsiexecutor (= 0.61.5) 227 | - Yoga 228 | - React-CoreModules (0.61.5): 229 | - FBReactNativeSpec (= 0.61.5) 230 | - Folly (= 2018.10.22.00) 231 | - RCTTypeSafety (= 0.61.5) 232 | - React-Core/CoreModulesHeaders (= 0.61.5) 233 | - React-RCTImage (= 0.61.5) 234 | - ReactCommon/turbomodule/core (= 0.61.5) 235 | - React-cxxreact (0.61.5): 236 | - boost-for-react-native (= 1.63.0) 237 | - DoubleConversion 238 | - Folly (= 2018.10.22.00) 239 | - glog 240 | - React-jsinspector (= 0.61.5) 241 | - React-jsi (0.61.5): 242 | - boost-for-react-native (= 1.63.0) 243 | - DoubleConversion 244 | - Folly (= 2018.10.22.00) 245 | - glog 246 | - React-jsi/Default (= 0.61.5) 247 | - React-jsi/Default (0.61.5): 248 | - boost-for-react-native (= 1.63.0) 249 | - DoubleConversion 250 | - Folly (= 2018.10.22.00) 251 | - glog 252 | - React-jsiexecutor (0.61.5): 253 | - DoubleConversion 254 | - Folly (= 2018.10.22.00) 255 | - glog 256 | - React-cxxreact (= 0.61.5) 257 | - React-jsi (= 0.61.5) 258 | - React-jsinspector (0.61.5) 259 | - React-RCTActionSheet (0.61.5): 260 | - React-Core/RCTActionSheetHeaders (= 0.61.5) 261 | - React-RCTAnimation (0.61.5): 262 | - React-Core/RCTAnimationHeaders (= 0.61.5) 263 | - React-RCTBlob (0.61.5): 264 | - React-Core/RCTBlobHeaders (= 0.61.5) 265 | - React-Core/RCTWebSocket (= 0.61.5) 266 | - React-jsi (= 0.61.5) 267 | - React-RCTNetwork (= 0.61.5) 268 | - React-RCTImage (0.61.5): 269 | - React-Core/RCTImageHeaders (= 0.61.5) 270 | - React-RCTNetwork (= 0.61.5) 271 | - React-RCTLinking (0.61.5): 272 | - React-Core/RCTLinkingHeaders (= 0.61.5) 273 | - React-RCTNetwork (0.61.5): 274 | - React-Core/RCTNetworkHeaders (= 0.61.5) 275 | - React-RCTSettings (0.61.5): 276 | - React-Core/RCTSettingsHeaders (= 0.61.5) 277 | - React-RCTText (0.61.5): 278 | - React-Core/RCTTextHeaders (= 0.61.5) 279 | - React-RCTVibration (0.61.5): 280 | - React-Core/RCTVibrationHeaders (= 0.61.5) 281 | - ReactCommon/jscallinvoker (0.61.5): 282 | - DoubleConversion 283 | - Folly (= 2018.10.22.00) 284 | - glog 285 | - React-cxxreact (= 0.61.5) 286 | - ReactCommon/turbomodule/core (0.61.5): 287 | - DoubleConversion 288 | - Folly (= 2018.10.22.00) 289 | - glog 290 | - React-Core (= 0.61.5) 291 | - React-cxxreact (= 0.61.5) 292 | - React-jsi (= 0.61.5) 293 | - ReactCommon/jscallinvoker (= 0.61.5) 294 | - RNFBApp (6.3.3): 295 | - Firebase/Core (~> 6.13.0) 296 | - React 297 | - RNFBAuth (6.3.3): 298 | - Firebase/Auth (~> 6.13.0) 299 | - Firebase/Core (~> 6.13.0) 300 | - React 301 | - RNFBApp 302 | - Yoga (1.14.0) 303 | 304 | DEPENDENCIES: 305 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 306 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 307 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`) 308 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) 309 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 310 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) 311 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 312 | - React (from `../node_modules/react-native/`) 313 | - React-Core (from `../node_modules/react-native/`) 314 | - React-Core/DevSupport (from `../node_modules/react-native/`) 315 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 316 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 317 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 318 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 319 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 320 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) 321 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 322 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 323 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 324 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 325 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 326 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 327 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 328 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 329 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 330 | - ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`) 331 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 332 | - "RNFBApp (from `../node_modules/@react-native-firebase/app`)" 333 | - "RNFBAuth (from `../node_modules/@react-native-firebase/auth`)" 334 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 335 | 336 | SPEC REPOS: 337 | trunk: 338 | - boost-for-react-native 339 | - Firebase 340 | - FirebaseAnalytics 341 | - FirebaseAuth 342 | - FirebaseAuthInterop 343 | - FirebaseCore 344 | - FirebaseCoreDiagnostics 345 | - FirebaseCoreDiagnosticsInterop 346 | - FirebaseInstanceID 347 | - GoogleAppMeasurement 348 | - GoogleDataTransport 349 | - GoogleDataTransportCCTSupport 350 | - GoogleUtilities 351 | - GTMSessionFetcher 352 | - nanopb 353 | 354 | EXTERNAL SOURCES: 355 | DoubleConversion: 356 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 357 | FBLazyVector: 358 | :path: "../node_modules/react-native/Libraries/FBLazyVector" 359 | FBReactNativeSpec: 360 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec" 361 | Folly: 362 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" 363 | glog: 364 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 365 | RCTRequired: 366 | :path: "../node_modules/react-native/Libraries/RCTRequired" 367 | RCTTypeSafety: 368 | :path: "../node_modules/react-native/Libraries/TypeSafety" 369 | React: 370 | :path: "../node_modules/react-native/" 371 | React-Core: 372 | :path: "../node_modules/react-native/" 373 | React-CoreModules: 374 | :path: "../node_modules/react-native/React/CoreModules" 375 | React-cxxreact: 376 | :path: "../node_modules/react-native/ReactCommon/cxxreact" 377 | React-jsi: 378 | :path: "../node_modules/react-native/ReactCommon/jsi" 379 | React-jsiexecutor: 380 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 381 | React-jsinspector: 382 | :path: "../node_modules/react-native/ReactCommon/jsinspector" 383 | React-RCTActionSheet: 384 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 385 | React-RCTAnimation: 386 | :path: "../node_modules/react-native/Libraries/NativeAnimation" 387 | React-RCTBlob: 388 | :path: "../node_modules/react-native/Libraries/Blob" 389 | React-RCTImage: 390 | :path: "../node_modules/react-native/Libraries/Image" 391 | React-RCTLinking: 392 | :path: "../node_modules/react-native/Libraries/LinkingIOS" 393 | React-RCTNetwork: 394 | :path: "../node_modules/react-native/Libraries/Network" 395 | React-RCTSettings: 396 | :path: "../node_modules/react-native/Libraries/Settings" 397 | React-RCTText: 398 | :path: "../node_modules/react-native/Libraries/Text" 399 | React-RCTVibration: 400 | :path: "../node_modules/react-native/Libraries/Vibration" 401 | ReactCommon: 402 | :path: "../node_modules/react-native/ReactCommon" 403 | RNFBApp: 404 | :path: "../node_modules/@react-native-firebase/app" 405 | RNFBAuth: 406 | :path: "../node_modules/@react-native-firebase/auth" 407 | Yoga: 408 | :path: "../node_modules/react-native/ReactCommon/yoga" 409 | 410 | SPEC CHECKSUMS: 411 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c 412 | DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 413 | FBLazyVector: aaeaf388755e4f29cd74acbc9e3b8da6d807c37f 414 | FBReactNativeSpec: 118d0d177724c2d67f08a59136eb29ef5943ec75 415 | Firebase: 458d109512200d1aca2e1b9b6cf7d68a869a4a46 416 | FirebaseAnalytics: 45f36d9c429fc91d206283900ab75390cd05ee8a 417 | FirebaseAuth: ce45d7c5d46bed90159f3a73b6efbe8976ed3573 418 | FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc 419 | FirebaseCore: 307ea2508df730c5865334e41965bd9ea344b0e5 420 | FirebaseCoreDiagnostics: 5e78803ab276bc5b50340e3c539c06c3de35c649 421 | FirebaseCoreDiagnosticsInterop: 296e2c5f5314500a850ad0b83e9e7c10b011a850 422 | FirebaseInstanceID: ebd2ea79ee38db0cb5f5167b17a0d387e1cc7b6e 423 | Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51 424 | glog: 1f3da668190260b06b429bb211bfbee5cd790c28 425 | GoogleAppMeasurement: dfe55efa543e899d906309eaaac6ca26d249862f 426 | GoogleDataTransport: 0048df6388dab1c254799f2a30365b1dffe20422 427 | GoogleDataTransportCCTSupport: f880d70972efa2ed1be4e9173a0f4c5f3dc2d176 428 | GoogleUtilities: 06eb53bb579efe7099152735900dd04bf09e7275 429 | GTMSessionFetcher: cea130bbfe5a7edc8d06d3f0d17288c32ffe9925 430 | nanopb: 18003b5e52dab79db540fe93fe9579f399bd1ccd 431 | RCTRequired: b153add4da6e7dbc44aebf93f3cf4fcae392ddf1 432 | RCTTypeSafety: 9aa1b91d7f9310fc6eadc3cf95126ffe818af320 433 | React: b6a59ef847b2b40bb6e0180a97d0ca716969ac78 434 | React-Core: 688b451f7d616cc1134ac95295b593d1b5158a04 435 | React-CoreModules: d04f8494c1a328b69ec11db9d1137d667f916dcb 436 | React-cxxreact: d0f7bcafa196ae410e5300736b424455e7fb7ba7 437 | React-jsi: cb2cd74d7ccf4cffb071a46833613edc79cdf8f7 438 | React-jsiexecutor: d5525f9ed5f782fdbacb64b9b01a43a9323d2386 439 | React-jsinspector: fa0ecc501688c3c4c34f28834a76302233e29dc0 440 | React-RCTActionSheet: 600b4d10e3aea0913b5a92256d2719c0cdd26d76 441 | React-RCTAnimation: 791a87558389c80908ed06cc5dfc5e7920dfa360 442 | React-RCTBlob: d89293cc0236d9cb0933d85e430b0bbe81ad1d72 443 | React-RCTImage: 6b8e8df449eb7c814c99a92d6b52de6fe39dea4e 444 | React-RCTLinking: 121bb231c7503cf9094f4d8461b96a130fabf4a5 445 | React-RCTNetwork: fb353640aafcee84ca8b78957297bd395f065c9a 446 | React-RCTSettings: 8db258ea2a5efee381fcf7a6d5044e2f8b68b640 447 | React-RCTText: 9ccc88273e9a3aacff5094d2175a605efa854dbe 448 | React-RCTVibration: a49a1f42bf8f5acf1c3e297097517c6b3af377ad 449 | ReactCommon: 198c7c8d3591f975e5431bec1b0b3b581aa1c5dd 450 | RNFBApp: 887ccc5840f93abad3202ff23eb0faf7bee4ac12 451 | RNFBAuth: 9c6a6ad1435eeff2aca7bbb335123e25b5781e65 452 | Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b 453 | 454 | PODFILE CHECKSUM: 6930eeb5a844013e6f32148f80828b905881dcfa 455 | 456 | COCOAPODS: 1.8.4 457 | -------------------------------------------------------------------------------- /ios/authenticationFirebase-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | NSAppTransportSecurity 26 | 27 | NSExceptionDomains 28 | 29 | localhost 30 | 31 | NSExceptionAllowsInsecureHTTPLoads 32 | 33 | 34 | 35 | 36 | NSLocationWhenInUseUsageDescription 37 | 38 | UILaunchStoryboardName 39 | LaunchScreen 40 | UIRequiredDeviceCapabilities 41 | 42 | armv7 43 | 44 | UISupportedInterfaceOrientations 45 | 46 | UIInterfaceOrientationPortrait 47 | UIInterfaceOrientationLandscapeLeft 48 | UIInterfaceOrientationLandscapeRight 49 | 50 | UIViewControllerBasedStatusBarAppearance 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /ios/authenticationFirebase-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/authenticationFirebase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00E356F31AD99517003FC87E /* authenticationFirebaseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* authenticationFirebaseTests.m */; }; 11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 12 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 15 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 16 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 17 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 18 | 2DCD954D1E0B4F2C00145EB5 /* authenticationFirebaseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* authenticationFirebaseTests.m */; }; 19 | 462C62B10EB5CEA8836F3D50 /* libPods-authenticationFirebaseTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 909FDD5874D40494C69EA321 /* libPods-authenticationFirebaseTests.a */; }; 20 | 61F6FD76ED986928CECF7F1B /* libPods-authenticationFirebase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EC356FCCE8CB36B9699B9395 /* libPods-authenticationFirebase.a */; }; 21 | 6FC82356C7A954651480B57B /* libPods-authenticationFirebase-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DE74A62E55DE5B0ACC1F7628 /* libPods-authenticationFirebase-tvOSTests.a */; }; 22 | 849AE10523F611D30081AA8B /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 849AE10423F611D30081AA8B /* GoogleService-Info.plist */; }; 23 | D75D2EA9F200904B0F03B22F /* libPods-authenticationFirebase-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 16E829208112583F1464D1A3 /* libPods-authenticationFirebase-tvOS.a */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 32 | remoteInfo = authenticationFirebase; 33 | }; 34 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 35 | isa = PBXContainerItemProxy; 36 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 37 | proxyType = 1; 38 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 39 | remoteInfo = "authenticationFirebase-tvOS"; 40 | }; 41 | /* End PBXContainerItemProxy section */ 42 | 43 | /* Begin PBXFileReference section */ 44 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 45 | 00E356EE1AD99517003FC87E /* authenticationFirebaseTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = authenticationFirebaseTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 00E356F21AD99517003FC87E /* authenticationFirebaseTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = authenticationFirebaseTests.m; sourceTree = ""; }; 48 | 13B07F961A680F5B00A75B9A /* authenticationFirebase.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = authenticationFirebase.app; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = authenticationFirebase/AppDelegate.h; sourceTree = ""; }; 50 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = authenticationFirebase/AppDelegate.m; sourceTree = ""; }; 51 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 52 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = authenticationFirebase/Images.xcassets; sourceTree = ""; }; 53 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = authenticationFirebase/Info.plist; sourceTree = ""; }; 54 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = authenticationFirebase/main.m; sourceTree = ""; }; 55 | 16E829208112583F1464D1A3 /* libPods-authenticationFirebase-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-authenticationFirebase-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 25F7CCDD9CCBD656E1AE05EB /* Pods-authenticationFirebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebase.debug.xcconfig"; path = "Target Support Files/Pods-authenticationFirebase/Pods-authenticationFirebase.debug.xcconfig"; sourceTree = ""; }; 57 | 2A805D74D7E02EA3484E97B7 /* Pods-authenticationFirebaseTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebaseTests.release.xcconfig"; path = "Target Support Files/Pods-authenticationFirebaseTests/Pods-authenticationFirebaseTests.release.xcconfig"; sourceTree = ""; }; 58 | 2D02E47B1E0B4A5D006451C7 /* authenticationFirebase-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "authenticationFirebase-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 2D02E4901E0B4A5D006451C7 /* authenticationFirebase-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "authenticationFirebase-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 849AE10423F611D30081AA8B /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "authenticationFirebase/GoogleService-Info.plist"; sourceTree = ""; }; 61 | 8EDC6A92BC55F30709A9C202 /* Pods-authenticationFirebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebase.release.xcconfig"; path = "Target Support Files/Pods-authenticationFirebase/Pods-authenticationFirebase.release.xcconfig"; sourceTree = ""; }; 62 | 909FDD5874D40494C69EA321 /* libPods-authenticationFirebaseTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-authenticationFirebaseTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 63 | 9D9E8304C7D7BE3521797B01 /* Pods-authenticationFirebase-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebase-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-authenticationFirebase-tvOSTests/Pods-authenticationFirebase-tvOSTests.debug.xcconfig"; sourceTree = ""; }; 64 | AF7E25446BAFA67496E93BF2 /* Pods-authenticationFirebaseTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebaseTests.debug.xcconfig"; path = "Target Support Files/Pods-authenticationFirebaseTests/Pods-authenticationFirebaseTests.debug.xcconfig"; sourceTree = ""; }; 65 | B4429A58F34BE70FC0F0C0DF /* Pods-authenticationFirebase-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebase-tvOS.release.xcconfig"; path = "Target Support Files/Pods-authenticationFirebase-tvOS/Pods-authenticationFirebase-tvOS.release.xcconfig"; sourceTree = ""; }; 66 | BBDB854314AAC7BB62DAD08A /* Pods-authenticationFirebase-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebase-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-authenticationFirebase-tvOSTests/Pods-authenticationFirebase-tvOSTests.release.xcconfig"; sourceTree = ""; }; 67 | DD1E8373F25FB2B16D903782 /* Pods-authenticationFirebase-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-authenticationFirebase-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-authenticationFirebase-tvOS/Pods-authenticationFirebase-tvOS.debug.xcconfig"; sourceTree = ""; }; 68 | DE74A62E55DE5B0ACC1F7628 /* libPods-authenticationFirebase-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-authenticationFirebase-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | EC356FCCE8CB36B9699B9395 /* libPods-authenticationFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-authenticationFirebase.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 70 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 71 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 72 | /* End PBXFileReference section */ 73 | 74 | /* Begin PBXFrameworksBuildPhase section */ 75 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 76 | isa = PBXFrameworksBuildPhase; 77 | buildActionMask = 2147483647; 78 | files = ( 79 | 462C62B10EB5CEA8836F3D50 /* libPods-authenticationFirebaseTests.a in Frameworks */, 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 84 | isa = PBXFrameworksBuildPhase; 85 | buildActionMask = 2147483647; 86 | files = ( 87 | 61F6FD76ED986928CECF7F1B /* libPods-authenticationFirebase.a in Frameworks */, 88 | ); 89 | runOnlyForDeploymentPostprocessing = 0; 90 | }; 91 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 92 | isa = PBXFrameworksBuildPhase; 93 | buildActionMask = 2147483647; 94 | files = ( 95 | D75D2EA9F200904B0F03B22F /* libPods-authenticationFirebase-tvOS.a in Frameworks */, 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 100 | isa = PBXFrameworksBuildPhase; 101 | buildActionMask = 2147483647; 102 | files = ( 103 | 6FC82356C7A954651480B57B /* libPods-authenticationFirebase-tvOSTests.a in Frameworks */, 104 | ); 105 | runOnlyForDeploymentPostprocessing = 0; 106 | }; 107 | /* End PBXFrameworksBuildPhase section */ 108 | 109 | /* Begin PBXGroup section */ 110 | 00E356EF1AD99517003FC87E /* authenticationFirebaseTests */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 00E356F21AD99517003FC87E /* authenticationFirebaseTests.m */, 114 | 00E356F01AD99517003FC87E /* Supporting Files */, 115 | ); 116 | path = authenticationFirebaseTests; 117 | sourceTree = ""; 118 | }; 119 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 00E356F11AD99517003FC87E /* Info.plist */, 123 | ); 124 | name = "Supporting Files"; 125 | sourceTree = ""; 126 | }; 127 | 13B07FAE1A68108700A75B9A /* authenticationFirebase */ = { 128 | isa = PBXGroup; 129 | children = ( 130 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 131 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 132 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 133 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 134 | 849AE10423F611D30081AA8B /* GoogleService-Info.plist */, 135 | 13B07FB61A68108700A75B9A /* Info.plist */, 136 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 137 | 13B07FB71A68108700A75B9A /* main.m */, 138 | ); 139 | name = authenticationFirebase; 140 | sourceTree = ""; 141 | }; 142 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 146 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 147 | EC356FCCE8CB36B9699B9395 /* libPods-authenticationFirebase.a */, 148 | 16E829208112583F1464D1A3 /* libPods-authenticationFirebase-tvOS.a */, 149 | DE74A62E55DE5B0ACC1F7628 /* libPods-authenticationFirebase-tvOSTests.a */, 150 | 909FDD5874D40494C69EA321 /* libPods-authenticationFirebaseTests.a */, 151 | ); 152 | name = Frameworks; 153 | sourceTree = ""; 154 | }; 155 | 77AB0794F7C78D0789FB35EB /* Pods */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 25F7CCDD9CCBD656E1AE05EB /* Pods-authenticationFirebase.debug.xcconfig */, 159 | 8EDC6A92BC55F30709A9C202 /* Pods-authenticationFirebase.release.xcconfig */, 160 | DD1E8373F25FB2B16D903782 /* Pods-authenticationFirebase-tvOS.debug.xcconfig */, 161 | B4429A58F34BE70FC0F0C0DF /* Pods-authenticationFirebase-tvOS.release.xcconfig */, 162 | 9D9E8304C7D7BE3521797B01 /* Pods-authenticationFirebase-tvOSTests.debug.xcconfig */, 163 | BBDB854314AAC7BB62DAD08A /* Pods-authenticationFirebase-tvOSTests.release.xcconfig */, 164 | AF7E25446BAFA67496E93BF2 /* Pods-authenticationFirebaseTests.debug.xcconfig */, 165 | 2A805D74D7E02EA3484E97B7 /* Pods-authenticationFirebaseTests.release.xcconfig */, 166 | ); 167 | path = Pods; 168 | sourceTree = ""; 169 | }; 170 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | ); 174 | name = Libraries; 175 | sourceTree = ""; 176 | }; 177 | 83CBB9F61A601CBA00E9B192 = { 178 | isa = PBXGroup; 179 | children = ( 180 | 13B07FAE1A68108700A75B9A /* authenticationFirebase */, 181 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 182 | 00E356EF1AD99517003FC87E /* authenticationFirebaseTests */, 183 | 83CBBA001A601CBA00E9B192 /* Products */, 184 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 185 | 77AB0794F7C78D0789FB35EB /* Pods */, 186 | ); 187 | indentWidth = 2; 188 | sourceTree = ""; 189 | tabWidth = 2; 190 | usesTabs = 0; 191 | }; 192 | 83CBBA001A601CBA00E9B192 /* Products */ = { 193 | isa = PBXGroup; 194 | children = ( 195 | 13B07F961A680F5B00A75B9A /* authenticationFirebase.app */, 196 | 00E356EE1AD99517003FC87E /* authenticationFirebaseTests.xctest */, 197 | 2D02E47B1E0B4A5D006451C7 /* authenticationFirebase-tvOS.app */, 198 | 2D02E4901E0B4A5D006451C7 /* authenticationFirebase-tvOSTests.xctest */, 199 | ); 200 | name = Products; 201 | sourceTree = ""; 202 | }; 203 | /* End PBXGroup section */ 204 | 205 | /* Begin PBXNativeTarget section */ 206 | 00E356ED1AD99517003FC87E /* authenticationFirebaseTests */ = { 207 | isa = PBXNativeTarget; 208 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "authenticationFirebaseTests" */; 209 | buildPhases = ( 210 | 0EF1A8CF7E952075AF846406 /* [CP] Check Pods Manifest.lock */, 211 | 00E356EA1AD99517003FC87E /* Sources */, 212 | 00E356EB1AD99517003FC87E /* Frameworks */, 213 | 00E356EC1AD99517003FC87E /* Resources */, 214 | ); 215 | buildRules = ( 216 | ); 217 | dependencies = ( 218 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 219 | ); 220 | name = authenticationFirebaseTests; 221 | productName = authenticationFirebaseTests; 222 | productReference = 00E356EE1AD99517003FC87E /* authenticationFirebaseTests.xctest */; 223 | productType = "com.apple.product-type.bundle.unit-test"; 224 | }; 225 | 13B07F861A680F5B00A75B9A /* authenticationFirebase */ = { 226 | isa = PBXNativeTarget; 227 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "authenticationFirebase" */; 228 | buildPhases = ( 229 | 5F22B361DA5AD3D3F5005D24 /* [CP] Check Pods Manifest.lock */, 230 | FD10A7F022414F080027D42C /* Start Packager */, 231 | 13B07F871A680F5B00A75B9A /* Sources */, 232 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 233 | 13B07F8E1A680F5B00A75B9A /* Resources */, 234 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 235 | C9DEC1E3BEAB896535CE8D97 /* [CP-User] [RNFB] Core Configuration */, 236 | ); 237 | buildRules = ( 238 | ); 239 | dependencies = ( 240 | ); 241 | name = authenticationFirebase; 242 | productName = authenticationFirebase; 243 | productReference = 13B07F961A680F5B00A75B9A /* authenticationFirebase.app */; 244 | productType = "com.apple.product-type.application"; 245 | }; 246 | 2D02E47A1E0B4A5D006451C7 /* authenticationFirebase-tvOS */ = { 247 | isa = PBXNativeTarget; 248 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "authenticationFirebase-tvOS" */; 249 | buildPhases = ( 250 | 3E780A52650B4141E1170271 /* [CP] Check Pods Manifest.lock */, 251 | FD10A7F122414F3F0027D42C /* Start Packager */, 252 | 2D02E4771E0B4A5D006451C7 /* Sources */, 253 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 254 | 2D02E4791E0B4A5D006451C7 /* Resources */, 255 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 256 | ); 257 | buildRules = ( 258 | ); 259 | dependencies = ( 260 | ); 261 | name = "authenticationFirebase-tvOS"; 262 | productName = "authenticationFirebase-tvOS"; 263 | productReference = 2D02E47B1E0B4A5D006451C7 /* authenticationFirebase-tvOS.app */; 264 | productType = "com.apple.product-type.application"; 265 | }; 266 | 2D02E48F1E0B4A5D006451C7 /* authenticationFirebase-tvOSTests */ = { 267 | isa = PBXNativeTarget; 268 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "authenticationFirebase-tvOSTests" */; 269 | buildPhases = ( 270 | 09EF59292E921CEF6C9CA9A1 /* [CP] Check Pods Manifest.lock */, 271 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 272 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 273 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 274 | ); 275 | buildRules = ( 276 | ); 277 | dependencies = ( 278 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 279 | ); 280 | name = "authenticationFirebase-tvOSTests"; 281 | productName = "authenticationFirebase-tvOSTests"; 282 | productReference = 2D02E4901E0B4A5D006451C7 /* authenticationFirebase-tvOSTests.xctest */; 283 | productType = "com.apple.product-type.bundle.unit-test"; 284 | }; 285 | /* End PBXNativeTarget section */ 286 | 287 | /* Begin PBXProject section */ 288 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 289 | isa = PBXProject; 290 | attributes = { 291 | LastUpgradeCheck = 0940; 292 | ORGANIZATIONNAME = Facebook; 293 | TargetAttributes = { 294 | 00E356ED1AD99517003FC87E = { 295 | CreatedOnToolsVersion = 6.2; 296 | TestTargetID = 13B07F861A680F5B00A75B9A; 297 | }; 298 | 13B07F861A680F5B00A75B9A = { 299 | DevelopmentTeam = Z4TZSLH736; 300 | }; 301 | 2D02E47A1E0B4A5D006451C7 = { 302 | CreatedOnToolsVersion = 8.2.1; 303 | ProvisioningStyle = Automatic; 304 | }; 305 | 2D02E48F1E0B4A5D006451C7 = { 306 | CreatedOnToolsVersion = 8.2.1; 307 | ProvisioningStyle = Automatic; 308 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 309 | }; 310 | }; 311 | }; 312 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "authenticationFirebase" */; 313 | compatibilityVersion = "Xcode 3.2"; 314 | developmentRegion = English; 315 | hasScannedForEncodings = 0; 316 | knownRegions = ( 317 | English, 318 | en, 319 | Base, 320 | ); 321 | mainGroup = 83CBB9F61A601CBA00E9B192; 322 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 323 | projectDirPath = ""; 324 | projectRoot = ""; 325 | targets = ( 326 | 13B07F861A680F5B00A75B9A /* authenticationFirebase */, 327 | 00E356ED1AD99517003FC87E /* authenticationFirebaseTests */, 328 | 2D02E47A1E0B4A5D006451C7 /* authenticationFirebase-tvOS */, 329 | 2D02E48F1E0B4A5D006451C7 /* authenticationFirebase-tvOSTests */, 330 | ); 331 | }; 332 | /* End PBXProject section */ 333 | 334 | /* Begin PBXResourcesBuildPhase section */ 335 | 00E356EC1AD99517003FC87E /* Resources */ = { 336 | isa = PBXResourcesBuildPhase; 337 | buildActionMask = 2147483647; 338 | files = ( 339 | ); 340 | runOnlyForDeploymentPostprocessing = 0; 341 | }; 342 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 343 | isa = PBXResourcesBuildPhase; 344 | buildActionMask = 2147483647; 345 | files = ( 346 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 347 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 348 | 849AE10523F611D30081AA8B /* GoogleService-Info.plist in Resources */, 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | }; 352 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 353 | isa = PBXResourcesBuildPhase; 354 | buildActionMask = 2147483647; 355 | files = ( 356 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | }; 360 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 361 | isa = PBXResourcesBuildPhase; 362 | buildActionMask = 2147483647; 363 | files = ( 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | /* End PBXResourcesBuildPhase section */ 368 | 369 | /* Begin PBXShellScriptBuildPhase section */ 370 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 371 | isa = PBXShellScriptBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | ); 375 | inputPaths = ( 376 | ); 377 | name = "Bundle React Native code and images"; 378 | outputPaths = ( 379 | ); 380 | runOnlyForDeploymentPostprocessing = 0; 381 | shellPath = /bin/sh; 382 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 383 | }; 384 | 09EF59292E921CEF6C9CA9A1 /* [CP] Check Pods Manifest.lock */ = { 385 | isa = PBXShellScriptBuildPhase; 386 | buildActionMask = 2147483647; 387 | files = ( 388 | ); 389 | inputFileListPaths = ( 390 | ); 391 | inputPaths = ( 392 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 393 | "${PODS_ROOT}/Manifest.lock", 394 | ); 395 | name = "[CP] Check Pods Manifest.lock"; 396 | outputFileListPaths = ( 397 | ); 398 | outputPaths = ( 399 | "$(DERIVED_FILE_DIR)/Pods-authenticationFirebase-tvOSTests-checkManifestLockResult.txt", 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | shellPath = /bin/sh; 403 | 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"; 404 | showEnvVarsInLog = 0; 405 | }; 406 | 0EF1A8CF7E952075AF846406 /* [CP] Check Pods Manifest.lock */ = { 407 | isa = PBXShellScriptBuildPhase; 408 | buildActionMask = 2147483647; 409 | files = ( 410 | ); 411 | inputFileListPaths = ( 412 | ); 413 | inputPaths = ( 414 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 415 | "${PODS_ROOT}/Manifest.lock", 416 | ); 417 | name = "[CP] Check Pods Manifest.lock"; 418 | outputFileListPaths = ( 419 | ); 420 | outputPaths = ( 421 | "$(DERIVED_FILE_DIR)/Pods-authenticationFirebaseTests-checkManifestLockResult.txt", 422 | ); 423 | runOnlyForDeploymentPostprocessing = 0; 424 | shellPath = /bin/sh; 425 | 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"; 426 | showEnvVarsInLog = 0; 427 | }; 428 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 429 | isa = PBXShellScriptBuildPhase; 430 | buildActionMask = 2147483647; 431 | files = ( 432 | ); 433 | inputPaths = ( 434 | ); 435 | name = "Bundle React Native Code And Images"; 436 | outputPaths = ( 437 | ); 438 | runOnlyForDeploymentPostprocessing = 0; 439 | shellPath = /bin/sh; 440 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 441 | }; 442 | 3E780A52650B4141E1170271 /* [CP] Check Pods Manifest.lock */ = { 443 | isa = PBXShellScriptBuildPhase; 444 | buildActionMask = 2147483647; 445 | files = ( 446 | ); 447 | inputFileListPaths = ( 448 | ); 449 | inputPaths = ( 450 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 451 | "${PODS_ROOT}/Manifest.lock", 452 | ); 453 | name = "[CP] Check Pods Manifest.lock"; 454 | outputFileListPaths = ( 455 | ); 456 | outputPaths = ( 457 | "$(DERIVED_FILE_DIR)/Pods-authenticationFirebase-tvOS-checkManifestLockResult.txt", 458 | ); 459 | runOnlyForDeploymentPostprocessing = 0; 460 | shellPath = /bin/sh; 461 | 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"; 462 | showEnvVarsInLog = 0; 463 | }; 464 | 5F22B361DA5AD3D3F5005D24 /* [CP] Check Pods Manifest.lock */ = { 465 | isa = PBXShellScriptBuildPhase; 466 | buildActionMask = 2147483647; 467 | files = ( 468 | ); 469 | inputFileListPaths = ( 470 | ); 471 | inputPaths = ( 472 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 473 | "${PODS_ROOT}/Manifest.lock", 474 | ); 475 | name = "[CP] Check Pods Manifest.lock"; 476 | outputFileListPaths = ( 477 | ); 478 | outputPaths = ( 479 | "$(DERIVED_FILE_DIR)/Pods-authenticationFirebase-checkManifestLockResult.txt", 480 | ); 481 | runOnlyForDeploymentPostprocessing = 0; 482 | shellPath = /bin/sh; 483 | 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"; 484 | showEnvVarsInLog = 0; 485 | }; 486 | C9DEC1E3BEAB896535CE8D97 /* [CP-User] [RNFB] Core Configuration */ = { 487 | isa = PBXShellScriptBuildPhase; 488 | buildActionMask = 2147483647; 489 | files = ( 490 | ); 491 | name = "[CP-User] [RNFB] Core Configuration"; 492 | runOnlyForDeploymentPostprocessing = 0; 493 | shellPath = /bin/sh; 494 | shellScript = "#!/usr/bin/env bash\n#\n# Copyright (c) 2016-present Invertase Limited & Contributors\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this library except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\nset -e\n\n_MAX_LOOKUPS=2;\n_SEARCH_RESULT=''\n_RN_ROOT_EXISTS=''\n_CURRENT_LOOKUPS=1\n_JSON_ROOT=\"'react-native'\"\n_JSON_FILE_NAME='firebase.json'\n_JSON_OUTPUT_BASE64='e30=' # { }\n_CURRENT_SEARCH_DIR=${PROJECT_DIR}\n_PLIST_BUDDY=/usr/libexec/PlistBuddy\n_TARGET_PLIST=\"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}\"\n_DSYM_PLIST=\"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Info.plist\"\n\n# plist arrays\n_PLIST_ENTRY_KEYS=()\n_PLIST_ENTRY_TYPES=()\n_PLIST_ENTRY_VALUES=()\n\nfunction setPlistValue {\n echo \"info: setting plist entry '$1' of type '$2' in file '$4'\"\n ${_PLIST_BUDDY} -c \"Add :$1 $2 '$3'\" $4 || echo \"info: '$1' already exists\"\n}\n\nfunction getFirebaseJsonKeyValue () {\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$1'); puts output[$_JSON_ROOT]['$2']\"\n else\n echo \"\"\n fi;\n}\n\nfunction jsonBoolToYesNo () {\n if [[ $1 == \"false\" ]]; then\n echo \"NO\"\n elif [[ $1 == \"true\" ]]; then\n echo \"YES\"\n else echo \"NO\"\n fi\n}\n\necho \"info: -> RNFB build script started\"\necho \"info: 1) Locating ${_JSON_FILE_NAME} file:\"\n\nif [[ -z ${_CURRENT_SEARCH_DIR} ]]; then\n _CURRENT_SEARCH_DIR=$(pwd)\nfi;\n\nwhile true; do\n _CURRENT_SEARCH_DIR=$(dirname \"$_CURRENT_SEARCH_DIR\")\n if [[ \"$_CURRENT_SEARCH_DIR\" == \"/\" ]] || [[ ${_CURRENT_LOOKUPS} -gt ${_MAX_LOOKUPS} ]]; then break; fi;\n echo \"info: ($_CURRENT_LOOKUPS of $_MAX_LOOKUPS) Searching in '$_CURRENT_SEARCH_DIR' for a ${_JSON_FILE_NAME} file.\"\n _SEARCH_RESULT=$(find \"$_CURRENT_SEARCH_DIR\" -maxdepth 2 -name ${_JSON_FILE_NAME} -print | head -n 1)\n if [[ ${_SEARCH_RESULT} ]]; then\n echo \"info: ${_JSON_FILE_NAME} found at $_SEARCH_RESULT\"\n break;\n fi;\n _CURRENT_LOOKUPS=$((_CURRENT_LOOKUPS+1))\ndone\n\nif [[ ${_SEARCH_RESULT} ]]; then\n _JSON_OUTPUT_RAW=$(cat \"${_SEARCH_RESULT}\")\n _RN_ROOT_EXISTS=$(ruby -e \"require 'rubygems';require 'json'; output=JSON.parse('$_JSON_OUTPUT_RAW'); puts output[$_JSON_ROOT]\" || echo '')\n\n if [[ ${_RN_ROOT_EXISTS} ]]; then\n _JSON_OUTPUT_BASE64=$(python -c 'import json,sys,base64;print(base64.b64encode(json.dumps(json.loads(open('\"'${_SEARCH_RESULT}'\"').read())['${_JSON_ROOT}'])))' || echo \"e30=\")\n fi\n\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n\n # config.messaging_auto_init_enabled\n _MESSAGING_AUTO_INIT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"messaging_auto_init_enabled\")\n if [[ $_MESSAGING_AUTO_INIT ]]; then\n _PLIST_ENTRY_KEYS+=(\"FirebaseMessagingAutoInitEnabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"$(jsonBoolToYesNo \"$_MESSAGING_AUTO_INIT\")\")\n fi\n\n # config.crashlytics_disable_auto_disabler - undocumented for now - mainly for debugging, document if becomes usful\n _CRASHLYTICS_AUTO_DISABLE_ENABLED=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"crashlytics_disable_auto_disabler\")\n if [[ $_CRASHLYTICS_AUTO_DISABLE_ENABLED == \"true\" ]]; then\n echo \"Disabled Crashlytics auto disabler.\" # do nothing\n else\n _PLIST_ENTRY_KEYS+=(\"firebase_crashlytics_collection_enabled\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"NO\")\n fi\n\n # config.admob_delay_app_measurement_init\n _ADMOB_DELAY_APP_MEASUREMENT=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_delay_app_measurement_init\")\n if [[ $_ADMOB_DELAY_APP_MEASUREMENT == \"true\" ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADDelayAppMeasurementInit\")\n _PLIST_ENTRY_TYPES+=(\"bool\")\n _PLIST_ENTRY_VALUES+=(\"YES\")\n fi\n\n # config.admob_ios_app_id\n _ADMOB_IOS_APP_ID=$(getFirebaseJsonKeyValue \"$_JSON_OUTPUT_RAW\" \"admob_ios_app_id\")\n if [[ $_ADMOB_IOS_APP_ID ]]; then\n _PLIST_ENTRY_KEYS+=(\"GADApplicationIdentifier\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_ADMOB_IOS_APP_ID\")\n fi\nelse\n _PLIST_ENTRY_KEYS+=(\"firebase_json_raw\")\n _PLIST_ENTRY_TYPES+=(\"string\")\n _PLIST_ENTRY_VALUES+=(\"$_JSON_OUTPUT_BASE64\")\n echo \"warning: A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase.\"\nfi;\n\necho \"info: 2) Injecting Info.plist entries: \"\n\n# Log out the keys we're adding\nfor i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n echo \" -> $i) ${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\"\ndone\n\nfor plist in \"${_TARGET_PLIST}\" \"${_DSYM_PLIST}\" ; do\n if [[ -f \"${plist}\" ]]; then\n\n # paths with spaces break the call to setPlistValue. temporarily modify\n # the shell internal field separator variable (IFS), which normally \n # includes spaces, to consist only of line breaks\n oldifs=$IFS\n IFS=\"\n\"\n\n for i in \"${!_PLIST_ENTRY_KEYS[@]}\"; do\n setPlistValue \"${_PLIST_ENTRY_KEYS[$i]}\" \"${_PLIST_ENTRY_TYPES[$i]}\" \"${_PLIST_ENTRY_VALUES[$i]}\" \"${plist}\"\n done\n\n # restore the original internal field separator value\n IFS=$oldifs\n else\n echo \"warning: A Info.plist build output file was not found (${plist})\"\n fi\ndone\n\necho \"info: <- RNFB build script finished\"\n\n"; 495 | }; 496 | FD10A7F022414F080027D42C /* Start Packager */ = { 497 | isa = PBXShellScriptBuildPhase; 498 | buildActionMask = 2147483647; 499 | files = ( 500 | ); 501 | inputFileListPaths = ( 502 | ); 503 | inputPaths = ( 504 | ); 505 | name = "Start Packager"; 506 | outputFileListPaths = ( 507 | ); 508 | outputPaths = ( 509 | ); 510 | runOnlyForDeploymentPostprocessing = 0; 511 | shellPath = /bin/sh; 512 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; 513 | showEnvVarsInLog = 0; 514 | }; 515 | FD10A7F122414F3F0027D42C /* Start Packager */ = { 516 | isa = PBXShellScriptBuildPhase; 517 | buildActionMask = 2147483647; 518 | files = ( 519 | ); 520 | inputFileListPaths = ( 521 | ); 522 | inputPaths = ( 523 | ); 524 | name = "Start Packager"; 525 | outputFileListPaths = ( 526 | ); 527 | outputPaths = ( 528 | ); 529 | runOnlyForDeploymentPostprocessing = 0; 530 | shellPath = /bin/sh; 531 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; 532 | showEnvVarsInLog = 0; 533 | }; 534 | /* End PBXShellScriptBuildPhase section */ 535 | 536 | /* Begin PBXSourcesBuildPhase section */ 537 | 00E356EA1AD99517003FC87E /* Sources */ = { 538 | isa = PBXSourcesBuildPhase; 539 | buildActionMask = 2147483647; 540 | files = ( 541 | 00E356F31AD99517003FC87E /* authenticationFirebaseTests.m in Sources */, 542 | ); 543 | runOnlyForDeploymentPostprocessing = 0; 544 | }; 545 | 13B07F871A680F5B00A75B9A /* Sources */ = { 546 | isa = PBXSourcesBuildPhase; 547 | buildActionMask = 2147483647; 548 | files = ( 549 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 550 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 551 | ); 552 | runOnlyForDeploymentPostprocessing = 0; 553 | }; 554 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 555 | isa = PBXSourcesBuildPhase; 556 | buildActionMask = 2147483647; 557 | files = ( 558 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 559 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 560 | ); 561 | runOnlyForDeploymentPostprocessing = 0; 562 | }; 563 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 564 | isa = PBXSourcesBuildPhase; 565 | buildActionMask = 2147483647; 566 | files = ( 567 | 2DCD954D1E0B4F2C00145EB5 /* authenticationFirebaseTests.m in Sources */, 568 | ); 569 | runOnlyForDeploymentPostprocessing = 0; 570 | }; 571 | /* End PBXSourcesBuildPhase section */ 572 | 573 | /* Begin PBXTargetDependency section */ 574 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 575 | isa = PBXTargetDependency; 576 | target = 13B07F861A680F5B00A75B9A /* authenticationFirebase */; 577 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 578 | }; 579 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 580 | isa = PBXTargetDependency; 581 | target = 2D02E47A1E0B4A5D006451C7 /* authenticationFirebase-tvOS */; 582 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 583 | }; 584 | /* End PBXTargetDependency section */ 585 | 586 | /* Begin PBXVariantGroup section */ 587 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 588 | isa = PBXVariantGroup; 589 | children = ( 590 | 13B07FB21A68108700A75B9A /* Base */, 591 | ); 592 | name = LaunchScreen.xib; 593 | path = authenticationFirebase; 594 | sourceTree = ""; 595 | }; 596 | /* End PBXVariantGroup section */ 597 | 598 | /* Begin XCBuildConfiguration section */ 599 | 00E356F61AD99517003FC87E /* Debug */ = { 600 | isa = XCBuildConfiguration; 601 | baseConfigurationReference = AF7E25446BAFA67496E93BF2 /* Pods-authenticationFirebaseTests.debug.xcconfig */; 602 | buildSettings = { 603 | BUNDLE_LOADER = "$(TEST_HOST)"; 604 | GCC_PREPROCESSOR_DEFINITIONS = ( 605 | "DEBUG=1", 606 | "$(inherited)", 607 | ); 608 | INFOPLIST_FILE = authenticationFirebaseTests/Info.plist; 609 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 610 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 611 | OTHER_LDFLAGS = ( 612 | "-ObjC", 613 | "-lc++", 614 | "$(inherited)", 615 | ); 616 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 617 | PRODUCT_NAME = "$(TARGET_NAME)"; 618 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/authenticationFirebase.app/authenticationFirebase"; 619 | }; 620 | name = Debug; 621 | }; 622 | 00E356F71AD99517003FC87E /* Release */ = { 623 | isa = XCBuildConfiguration; 624 | baseConfigurationReference = 2A805D74D7E02EA3484E97B7 /* Pods-authenticationFirebaseTests.release.xcconfig */; 625 | buildSettings = { 626 | BUNDLE_LOADER = "$(TEST_HOST)"; 627 | COPY_PHASE_STRIP = NO; 628 | INFOPLIST_FILE = authenticationFirebaseTests/Info.plist; 629 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 630 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 631 | OTHER_LDFLAGS = ( 632 | "-ObjC", 633 | "-lc++", 634 | "$(inherited)", 635 | ); 636 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 637 | PRODUCT_NAME = "$(TARGET_NAME)"; 638 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/authenticationFirebase.app/authenticationFirebase"; 639 | }; 640 | name = Release; 641 | }; 642 | 13B07F941A680F5B00A75B9A /* Debug */ = { 643 | isa = XCBuildConfiguration; 644 | baseConfigurationReference = 25F7CCDD9CCBD656E1AE05EB /* Pods-authenticationFirebase.debug.xcconfig */; 645 | buildSettings = { 646 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 647 | CURRENT_PROJECT_VERSION = 1; 648 | DEAD_CODE_STRIPPING = NO; 649 | DEVELOPMENT_TEAM = Z4TZSLH736; 650 | INFOPLIST_FILE = authenticationFirebase/Info.plist; 651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 652 | OTHER_LDFLAGS = ( 653 | "$(inherited)", 654 | "-ObjC", 655 | "-lc++", 656 | ); 657 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 658 | PRODUCT_NAME = authenticationFirebase; 659 | VERSIONING_SYSTEM = "apple-generic"; 660 | }; 661 | name = Debug; 662 | }; 663 | 13B07F951A680F5B00A75B9A /* Release */ = { 664 | isa = XCBuildConfiguration; 665 | baseConfigurationReference = 8EDC6A92BC55F30709A9C202 /* Pods-authenticationFirebase.release.xcconfig */; 666 | buildSettings = { 667 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 668 | CURRENT_PROJECT_VERSION = 1; 669 | DEVELOPMENT_TEAM = Z4TZSLH736; 670 | INFOPLIST_FILE = authenticationFirebase/Info.plist; 671 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 672 | OTHER_LDFLAGS = ( 673 | "$(inherited)", 674 | "-ObjC", 675 | "-lc++", 676 | ); 677 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 678 | PRODUCT_NAME = authenticationFirebase; 679 | VERSIONING_SYSTEM = "apple-generic"; 680 | }; 681 | name = Release; 682 | }; 683 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 684 | isa = XCBuildConfiguration; 685 | baseConfigurationReference = DD1E8373F25FB2B16D903782 /* Pods-authenticationFirebase-tvOS.debug.xcconfig */; 686 | buildSettings = { 687 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 688 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 689 | CLANG_ANALYZER_NONNULL = YES; 690 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 691 | CLANG_WARN_INFINITE_RECURSION = YES; 692 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 693 | DEBUG_INFORMATION_FORMAT = dwarf; 694 | ENABLE_TESTABILITY = YES; 695 | GCC_NO_COMMON_BLOCKS = YES; 696 | INFOPLIST_FILE = "authenticationFirebase-tvOS/Info.plist"; 697 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 698 | OTHER_LDFLAGS = ( 699 | "$(inherited)", 700 | "-ObjC", 701 | "-lc++", 702 | ); 703 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.authenticationFirebase-tvOS"; 704 | PRODUCT_NAME = "$(TARGET_NAME)"; 705 | SDKROOT = appletvos; 706 | TARGETED_DEVICE_FAMILY = 3; 707 | TVOS_DEPLOYMENT_TARGET = 9.2; 708 | }; 709 | name = Debug; 710 | }; 711 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 712 | isa = XCBuildConfiguration; 713 | baseConfigurationReference = B4429A58F34BE70FC0F0C0DF /* Pods-authenticationFirebase-tvOS.release.xcconfig */; 714 | buildSettings = { 715 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 716 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 717 | CLANG_ANALYZER_NONNULL = YES; 718 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 719 | CLANG_WARN_INFINITE_RECURSION = YES; 720 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 721 | COPY_PHASE_STRIP = NO; 722 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 723 | GCC_NO_COMMON_BLOCKS = YES; 724 | INFOPLIST_FILE = "authenticationFirebase-tvOS/Info.plist"; 725 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 726 | OTHER_LDFLAGS = ( 727 | "$(inherited)", 728 | "-ObjC", 729 | "-lc++", 730 | ); 731 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.authenticationFirebase-tvOS"; 732 | PRODUCT_NAME = "$(TARGET_NAME)"; 733 | SDKROOT = appletvos; 734 | TARGETED_DEVICE_FAMILY = 3; 735 | TVOS_DEPLOYMENT_TARGET = 9.2; 736 | }; 737 | name = Release; 738 | }; 739 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 740 | isa = XCBuildConfiguration; 741 | baseConfigurationReference = 9D9E8304C7D7BE3521797B01 /* Pods-authenticationFirebase-tvOSTests.debug.xcconfig */; 742 | buildSettings = { 743 | BUNDLE_LOADER = "$(TEST_HOST)"; 744 | CLANG_ANALYZER_NONNULL = YES; 745 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 746 | CLANG_WARN_INFINITE_RECURSION = YES; 747 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 748 | DEBUG_INFORMATION_FORMAT = dwarf; 749 | ENABLE_TESTABILITY = YES; 750 | GCC_NO_COMMON_BLOCKS = YES; 751 | INFOPLIST_FILE = "authenticationFirebase-tvOSTests/Info.plist"; 752 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 753 | OTHER_LDFLAGS = ( 754 | "$(inherited)", 755 | "-ObjC", 756 | "-lc++", 757 | ); 758 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.authenticationFirebase-tvOSTests"; 759 | PRODUCT_NAME = "$(TARGET_NAME)"; 760 | SDKROOT = appletvos; 761 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/authenticationFirebase-tvOS.app/authenticationFirebase-tvOS"; 762 | TVOS_DEPLOYMENT_TARGET = 10.1; 763 | }; 764 | name = Debug; 765 | }; 766 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 767 | isa = XCBuildConfiguration; 768 | baseConfigurationReference = BBDB854314AAC7BB62DAD08A /* Pods-authenticationFirebase-tvOSTests.release.xcconfig */; 769 | buildSettings = { 770 | BUNDLE_LOADER = "$(TEST_HOST)"; 771 | CLANG_ANALYZER_NONNULL = YES; 772 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 773 | CLANG_WARN_INFINITE_RECURSION = YES; 774 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 775 | COPY_PHASE_STRIP = NO; 776 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 777 | GCC_NO_COMMON_BLOCKS = YES; 778 | INFOPLIST_FILE = "authenticationFirebase-tvOSTests/Info.plist"; 779 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 780 | OTHER_LDFLAGS = ( 781 | "$(inherited)", 782 | "-ObjC", 783 | "-lc++", 784 | ); 785 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.authenticationFirebase-tvOSTests"; 786 | PRODUCT_NAME = "$(TARGET_NAME)"; 787 | SDKROOT = appletvos; 788 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/authenticationFirebase-tvOS.app/authenticationFirebase-tvOS"; 789 | TVOS_DEPLOYMENT_TARGET = 10.1; 790 | }; 791 | name = Release; 792 | }; 793 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 794 | isa = XCBuildConfiguration; 795 | buildSettings = { 796 | ALWAYS_SEARCH_USER_PATHS = NO; 797 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 798 | CLANG_CXX_LIBRARY = "libc++"; 799 | CLANG_ENABLE_MODULES = YES; 800 | CLANG_ENABLE_OBJC_ARC = YES; 801 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 802 | CLANG_WARN_BOOL_CONVERSION = YES; 803 | CLANG_WARN_COMMA = YES; 804 | CLANG_WARN_CONSTANT_CONVERSION = YES; 805 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 806 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 807 | CLANG_WARN_EMPTY_BODY = YES; 808 | CLANG_WARN_ENUM_CONVERSION = YES; 809 | CLANG_WARN_INFINITE_RECURSION = YES; 810 | CLANG_WARN_INT_CONVERSION = YES; 811 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 812 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 813 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 814 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 815 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 816 | CLANG_WARN_STRICT_PROTOTYPES = YES; 817 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 818 | CLANG_WARN_UNREACHABLE_CODE = YES; 819 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 820 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 821 | COPY_PHASE_STRIP = NO; 822 | ENABLE_STRICT_OBJC_MSGSEND = YES; 823 | ENABLE_TESTABILITY = YES; 824 | GCC_C_LANGUAGE_STANDARD = gnu99; 825 | GCC_DYNAMIC_NO_PIC = NO; 826 | GCC_NO_COMMON_BLOCKS = YES; 827 | GCC_OPTIMIZATION_LEVEL = 0; 828 | GCC_PREPROCESSOR_DEFINITIONS = ( 829 | "DEBUG=1", 830 | "$(inherited)", 831 | ); 832 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 833 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 834 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 835 | GCC_WARN_UNDECLARED_SELECTOR = YES; 836 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 837 | GCC_WARN_UNUSED_FUNCTION = YES; 838 | GCC_WARN_UNUSED_VARIABLE = YES; 839 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 840 | MTL_ENABLE_DEBUG_INFO = YES; 841 | ONLY_ACTIVE_ARCH = YES; 842 | SDKROOT = iphoneos; 843 | }; 844 | name = Debug; 845 | }; 846 | 83CBBA211A601CBA00E9B192 /* Release */ = { 847 | isa = XCBuildConfiguration; 848 | buildSettings = { 849 | ALWAYS_SEARCH_USER_PATHS = NO; 850 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 851 | CLANG_CXX_LIBRARY = "libc++"; 852 | CLANG_ENABLE_MODULES = YES; 853 | CLANG_ENABLE_OBJC_ARC = YES; 854 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 855 | CLANG_WARN_BOOL_CONVERSION = YES; 856 | CLANG_WARN_COMMA = YES; 857 | CLANG_WARN_CONSTANT_CONVERSION = YES; 858 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 859 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 860 | CLANG_WARN_EMPTY_BODY = YES; 861 | CLANG_WARN_ENUM_CONVERSION = YES; 862 | CLANG_WARN_INFINITE_RECURSION = YES; 863 | CLANG_WARN_INT_CONVERSION = YES; 864 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 865 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 866 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 867 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 868 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 869 | CLANG_WARN_STRICT_PROTOTYPES = YES; 870 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 871 | CLANG_WARN_UNREACHABLE_CODE = YES; 872 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 873 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 874 | COPY_PHASE_STRIP = YES; 875 | ENABLE_NS_ASSERTIONS = NO; 876 | ENABLE_STRICT_OBJC_MSGSEND = YES; 877 | GCC_C_LANGUAGE_STANDARD = gnu99; 878 | GCC_NO_COMMON_BLOCKS = YES; 879 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 880 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 881 | GCC_WARN_UNDECLARED_SELECTOR = YES; 882 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 883 | GCC_WARN_UNUSED_FUNCTION = YES; 884 | GCC_WARN_UNUSED_VARIABLE = YES; 885 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 886 | MTL_ENABLE_DEBUG_INFO = NO; 887 | SDKROOT = iphoneos; 888 | VALIDATE_PRODUCT = YES; 889 | }; 890 | name = Release; 891 | }; 892 | /* End XCBuildConfiguration section */ 893 | 894 | /* Begin XCConfigurationList section */ 895 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "authenticationFirebaseTests" */ = { 896 | isa = XCConfigurationList; 897 | buildConfigurations = ( 898 | 00E356F61AD99517003FC87E /* Debug */, 899 | 00E356F71AD99517003FC87E /* Release */, 900 | ); 901 | defaultConfigurationIsVisible = 0; 902 | defaultConfigurationName = Release; 903 | }; 904 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "authenticationFirebase" */ = { 905 | isa = XCConfigurationList; 906 | buildConfigurations = ( 907 | 13B07F941A680F5B00A75B9A /* Debug */, 908 | 13B07F951A680F5B00A75B9A /* Release */, 909 | ); 910 | defaultConfigurationIsVisible = 0; 911 | defaultConfigurationName = Release; 912 | }; 913 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "authenticationFirebase-tvOS" */ = { 914 | isa = XCConfigurationList; 915 | buildConfigurations = ( 916 | 2D02E4971E0B4A5E006451C7 /* Debug */, 917 | 2D02E4981E0B4A5E006451C7 /* Release */, 918 | ); 919 | defaultConfigurationIsVisible = 0; 920 | defaultConfigurationName = Release; 921 | }; 922 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "authenticationFirebase-tvOSTests" */ = { 923 | isa = XCConfigurationList; 924 | buildConfigurations = ( 925 | 2D02E4991E0B4A5E006451C7 /* Debug */, 926 | 2D02E49A1E0B4A5E006451C7 /* Release */, 927 | ); 928 | defaultConfigurationIsVisible = 0; 929 | defaultConfigurationName = Release; 930 | }; 931 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "authenticationFirebase" */ = { 932 | isa = XCConfigurationList; 933 | buildConfigurations = ( 934 | 83CBBA201A601CBA00E9B192 /* Debug */, 935 | 83CBBA211A601CBA00E9B192 /* Release */, 936 | ); 937 | defaultConfigurationIsVisible = 0; 938 | defaultConfigurationName = Release; 939 | }; 940 | /* End XCConfigurationList section */ 941 | }; 942 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 943 | } 944 | -------------------------------------------------------------------------------- /ios/authenticationFirebase.xcodeproj/xcshareddata/xcschemes/authenticationFirebase-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/authenticationFirebase.xcodeproj/xcshareddata/xcschemes/authenticationFirebase.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/authenticationFirebase.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/authenticationFirebase.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/authenticationFirebase/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios/authenticationFirebase/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | #import 13 | @import Firebase; 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 20 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 21 | moduleName:@"authenticationFirebase" 22 | initialProperties:nil]; 23 | 24 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 25 | 26 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 27 | UIViewController *rootViewController = [UIViewController new]; 28 | rootViewController.view = rootView; 29 | self.window.rootViewController = rootViewController; 30 | [self.window makeKeyAndVisible]; 31 | [FIRApp configure]; 32 | return YES; 33 | } 34 | 35 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 36 | { 37 | #if DEBUG 38 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 39 | #else 40 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 41 | #endif 42 | } 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /ios/authenticationFirebase/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/authenticationFirebase/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 | } 39 | -------------------------------------------------------------------------------- /ios/authenticationFirebase/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "version": 1, 4 | "author": "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/authenticationFirebase/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | authenticationFirebase 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSAllowsArbitraryLoads 30 | 31 | NSExceptionDomains 32 | 33 | localhost 34 | 35 | NSExceptionAllowsInsecureHTTPLoads 36 | 37 | 38 | 39 | 40 | NSLocationWhenInUseUsageDescription 41 | 42 | UILaunchStoryboardName 43 | LaunchScreen 44 | UIRequiredDeviceCapabilities 45 | 46 | armv7 47 | 48 | UISupportedInterfaceOrientations 49 | 50 | UIInterfaceOrientationPortrait 51 | UIInterfaceOrientationLandscapeLeft 52 | UIInterfaceOrientationLandscapeRight 53 | 54 | UIViewControllerBasedStatusBarAppearance 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /ios/authenticationFirebase/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/authenticationFirebaseTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/authenticationFirebaseTests/authenticationFirebaseTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React" 16 | 17 | @interface authenticationFirebaseTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation authenticationFirebaseTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | #ifdef DEBUG 44 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 45 | if (level >= RCTLogLevelError) { 46 | redboxError = message; 47 | } 48 | }); 49 | #endif 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 | #ifdef DEBUG 64 | RCTSetLogFunction(RCTDefaultLogFunction); 65 | #endif 66 | 67 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 68 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 69 | } 70 | 71 | 72 | @end 73 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "authenticationFirebase", 3 | "version": "6.3.3", 4 | "private": true, 5 | "scripts": { 6 | "start": "react-native start", 7 | "run:android": "react-native run-android", 8 | "run:ios": "react-native run-ios --simulator=\"iPhone X\"", 9 | "build:apk": "cd android && ./gradlew assembleRelease", 10 | "test": "jest", 11 | "prepare": "patch-package" 12 | }, 13 | "dependencies": { 14 | "@react-native-firebase/app": "6.3.3", 15 | "@react-native-firebase/auth": "^6.3.3", 16 | "react": "16.9.0", 17 | "react-native": "0.61.5" 18 | }, 19 | "devDependencies": { 20 | "@babel/core": "^7.6.2", 21 | "@babel/runtime": "^7.6.2", 22 | "@react-native-community/cli": "^2.9.0", 23 | "@react-native-community/eslint-config": "^0.0.5", 24 | "babel-jest": "^24.9.0", 25 | "eslint": "^6.5.1", 26 | "jest": "^24.9.0", 27 | "metro-react-native-babel-preset": "^0.56.0", 28 | "patch-package": "^6.1.4", 29 | "react-test-renderer": "16.9.0" 30 | }, 31 | "jest": { 32 | "preset": "react-native" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /patches/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayanisaid/react-native-authentication-firebase/8829ab3521301b38f5657fc9336c7a145e6080de/patches/.gitkeep --------------------------------------------------------------------------------