You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param hashedPhoneNumber sha256-hashed of normalized phone number in E.164 format - that is a leading + sign, then up to 15 digits, no dashes or spaces.
@@ -1031,9 +1031,10 @@ export function setConsent(analytics: Analytics, consentSettings: ConsentSetting
1031
1031
/**
1032
1032
* Configures Firebase Analytics to use custom gtag or dataLayer names.
1033
1033
* Intended to be used if gtag.js script has been installed on this page independently of Firebase Analytics, and is using non-default names for either the gtag function or for dataLayer. Must be called before calling `getAnalytics()` or it won't have any effect. Web only.
1034
-
* @param {SettingsOptions} options - See SettingsOptions.
1034
+
* @param {SettingsOptions} _options - See SettingsOptions - currently unused.
* Returns an absolute path to the applications main bundle.
349
+
* Returns an absolute path to the applications main bundle - iOS only
354
350
*
355
351
* ```js
356
352
* firebase.utils.FilePath.MAIN_BUNDLE;
357
353
* ```
358
-
*
359
-
* @ios iOS only
360
354
*/
361
355
MAIN_BUNDLE: string;
362
356
@@ -410,7 +404,7 @@ export namespace Utils {
410
404
LIBRARY_DIRECTORY: string;
411
405
412
406
/**
413
-
* Returns an absolute path to the directory on the primary shared/external storage device.
407
+
* Returns null on iOS, or on Android an absolute path to the directory on the primary shared/external storage device.
414
408
*
415
409
* Here your application can place persistent files it owns. These files are internal to the application, and not typically visible to the user as media.
416
410
*
@@ -419,8 +413,6 @@ export namespace Utils {
419
413
* ```js
420
414
* firebase.utils.FilePath.EXTERNAL_DIRECTORY;
421
415
* ```
422
-
*
423
-
* @android Android only - iOS returns null
424
416
*/
425
417
EXTERNAL_DIRECTORY: string|null;
426
418
@@ -429,14 +421,12 @@ export namespace Utils {
429
421
*
430
422
* Traditionally this is an SD card, but it may also be implemented as built-in storage on a device.
431
423
*
432
-
* Returns null if no external storage directory found, e.g. removable media has been ejected by the user.
424
+
* Returns null on iOS or if on android no external storage directory found, e.g. removable media has been ejected by the user.
433
425
* Requires special permission granted by Play Store review team on Android, is unlikely to be a valid path.
0 commit comments