Home
last modified time | relevance | path

Searched refs:googleServicesFile (Results 1 – 25 of 26) sorted by relevance

12

/expo/packages/@expo/cli/src/start/server/middleware/
H A DresolveAssets.ts27 if (manifest.android?.googleServicesFile) {
30 path.resolve(projectRoot, manifest.android.googleServicesFile),
33 manifest.android.googleServicesFile = contents;
36 …`Could not parse Expo config: android.googleServicesFile: "${manifest.android.googleServicesFile}"`
39 delete manifest.android.googleServicesFile;
42 if (manifest.ios?.googleServicesFile) {
45 path.resolve(projectRoot, manifest.ios.googleServicesFile),
48 manifest.ios.googleServicesFile = contents;
51 `Could not parse Expo config: ios.googleServicesFile: "${manifest.ios.googleServicesFile}"`
54 delete manifest.ios.googleServicesFile;
/expo/packages/@expo/cli/src/start/server/middleware/__tests__/
H A DresolveAssets-test.ts79 googleServicesFile: './android/google-services.json',
82 googleServicesFile: './ios/GoogleServices-Info.plist',
88 googleServicesFile: '{}',
92 googleServicesFile: 'PGZvbz48L2Zvbz4=',
103 googleServicesFile: './android/google-services.json',
106 googleServicesFile: './ios/GoogleServices-Info.plist',
/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DGoogleServices-test.ts28 googleServicesFile: 'path/to/google-services.json',
55 googleServicesFile: './google-services.json',
74 googleServicesFile: './google-services.json',
90 const validConfig = { android: { googleServicesFile: 'g.json' } };
133 const validConfig = { android: { googleServicesFile: 'g.json' } };
/expo/packages/@expo/config-plugins/src/android/
H A DGoogleServices.ts60 return config.android?.googleServicesFile ?? null;
93 const googleServicesFile = getGoogleServicesFilePath(config); constant
94 if (!googleServicesFile) {
111 const googleServicesFile = getGoogleServicesFilePath(config); constant
112 if (!googleServicesFile) {
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/universal/
H A DScopedFirebaseCoreService.kt105 googleServicesFile: JSONObject?, in getClientFromGoogleServices()
108 val clients = googleServicesFile?.optJSONArray("client") ?: return null in getClientFromGoogleServices()
131 …val googleServicesFile = if (googleServicesFileString != null) JSONObject(googleServicesFileString… in getOptionsFromManifest() constant
137 putJSONString("projectId", googleServicesFile, "project_info.project_id") in getOptionsFromManifest()
138 putJSONString("messagingSenderId", googleServicesFile, "project_info.project_number") in getOptionsFromManifest()
139 putJSONString("databaseURL", googleServicesFile, "project_info.firebase_url") in getOptionsFromManifest()
140 putJSONString("storageBucket", googleServicesFile, "project_info.storage_bucket") in getOptionsFromManifest()
148 googleServicesFile, in getOptionsFromManifest()
/expo/packages/@expo/config-plugins/build/android/
H A DGoogleServices.js88 … === null || _config$android === void 0 ? void 0 : _config$android.googleServicesFile) !== null &&…
112 const googleServicesFile = getGoogleServicesFilePath(config);
113 if (!googleServicesFile) {
125 const googleServicesFile = getGoogleServicesFilePath(config);
126 if (!googleServicesFile) {
H A DGoogleServices.js.map1googleServicesFile","targetPath","partialSourcePath","completeSourcePath","path","resolve","destin…
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/UniversalModules/
H A DABI49_0_0EXScopedFirebaseCore.m39 NSDictionary* googleServicesFile = [self.class googleServicesFileFromManifest:manifest];
40 FIROptions* options = [self.class optionsWithGoogleServicesFile:googleServicesFile];
85 NSString* googleServicesFile = manifest.iosGoogleServicesFile;
86 if (!googleServicesFile) return nil;
87 NSData *data = [[NSData alloc] initWithBase64EncodedString:googleServicesFile options:0];
90 if (error) ABI49_0_0EXLogWarn(@"Invalid googleServicesFile: %@", error);
94 ABI49_0_0EXLogWarn(@"Invalid googleServicesFile: %@", exception);
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/UniversalModules/
H A DABI47_0_0EXScopedFirebaseCore.m39 NSDictionary* googleServicesFile = [self.class googleServicesFileFromManifest:manifest];
40 FIROptions* options = [self.class optionsWithGoogleServicesFile:googleServicesFile];
85 NSString* googleServicesFile = manifest.iosGoogleServicesFile;
86 if (!googleServicesFile) return nil;
87 NSData *data = [[NSData alloc] initWithBase64EncodedString:googleServicesFile options:0];
90 if (error) ABI47_0_0EXLogWarn(@"Invalid googleServicesFile: %@", error);
94 ABI47_0_0EXLogWarn(@"Invalid googleServicesFile: %@", exception);
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/UniversalModules/
H A DABI48_0_0EXScopedFirebaseCore.m39 NSDictionary* googleServicesFile = [self.class googleServicesFileFromManifest:manifest];
40 FIROptions* options = [self.class optionsWithGoogleServicesFile:googleServicesFile];
85 NSString* googleServicesFile = manifest.iosGoogleServicesFile;
86 if (!googleServicesFile) return nil;
87 NSData *data = [[NSData alloc] initWithBase64EncodedString:googleServicesFile options:0];
90 if (error) ABI48_0_0EXLogWarn(@"Invalid googleServicesFile: %@", error);
94 ABI48_0_0EXLogWarn(@"Invalid googleServicesFile: %@", exception);
/expo/ios/Exponent/Versioned/Core/UniversalModules/
H A DEXScopedFirebaseCore.m39 NSDictionary* googleServicesFile = [self.class googleServicesFileFromManifest:manifest];
40 FIROptions* options = [self.class optionsWithGoogleServicesFile:googleServicesFile];
85 NSString* googleServicesFile = manifest.iosGoogleServicesFile;
86 if (!googleServicesFile) return nil;
87 NSData *data = [[NSData alloc] initWithBase64EncodedString:googleServicesFile options:0];
90 if (error) EXLogWarn(@"Invalid googleServicesFile: %@", error);
94 EXLogWarn(@"Invalid googleServicesFile: %@", exception);
/expo/packages/@expo/config-plugins/src/ios/__tests__/
H A DGoogle-test.ts35 ios: { googleServicesFile: './path/to/GoogleService-Info.plist' },
59 ios: { googleServicesFile: './path/to/GoogleService-Info.plist' },
/expo/packages/@expo/config-types/src/
H A DExpoConfig.ts378 googleServicesFile?: string; property
595 googleServicesFile?: string; property
/expo/packages/@expo/config-types/build/
H A DExpoConfig.d.ts374 googleServicesFile?: string; property
591 googleServicesFile?: string; property
/expo/packages/@expo/fingerprint/src/sourcer/
H A DExpo.ts73 isAndroid ? config.exp.android?.googleServicesFile : undefined,
74 isIos ? config.exp.ios?.googleServicesFile : undefined,
/expo/packages/@expo/config-plugins/src/ios/
H A DGoogle.ts57 return config.ios?.googleServicesFile ?? null;
/expo/packages/@expo/fingerprint/build/sourcer/
H A DExpo.js64 isAndroid ? config.exp.android?.googleServicesFile : undefined,
65 isIos ? config.exp.ios?.googleServicesFile : undefined,
/expo/packages/@expo/config-plugins/build/ios/
H A DGoogle.js105 …fig.ios) === null || _config$ios === void 0 ? void 0 : _config$ios.googleServicesFile) !== null &&…
H A DGoogle.js.map1googleServicesFile","setGoogleSignInReversedClientId","reversedClientId","appendScheme","copyFileS…
/expo/packages/@expo/prebuild-config/src/plugins/__tests__/
H A DwithDefaultPlugins-test.ts118 googleServicesFile: './config/GoogleService-Info.plist',
154 googleServicesFile: './config/google-services.json',
/expo/packages/@expo/prebuild-config/src/plugins/__tests__/__snapshots__/
H A DwithDefaultPlugins-test.ts.snap342 "googleServicesFile": "./config/google-services.json",
422 "googleServicesFile": "./config/GoogleService-Info.plist",
1639 "googleServicesFile": "./config/google-services.json",
1719 "googleServicesFile": "./config/GoogleService-Info.plist",
2619 "googleServicesFile": "./config/google-services.json",
2699 "googleServicesFile": "./config/GoogleService-Info.plist",
/expo/ios/versioned/sdk47/EXManifests/EXManifests/
H A DABI47_0_0EXManifestsBaseManifest.m263 return [self.iosConfig nullableStringForKey:@"googleServicesFile"];
/expo/packages/@expo/config-plugins/
H A DCHANGELOG.md110 …po.ios.config.googleSignIn.reservedClientId` in favor of `expo.ios.googleServicesFile`. ([#20376](…
/expo/ios/versioned/sdk48/EXManifests/EXManifests/
H A DABI48_0_0EXManifestsBaseManifest.m268 return [self.iosConfig nullableStringForKey:@"googleServicesFile"];
/expo/docs/pages/push-notifications/
H A Dpush-notifications-setup.mdx204 4. In **app.json**, add an `android.googleServicesFile` field with the relative path to the downloa…
209 "googleServicesFile": "./google-services.json"

12