@@ -66,10 +66,10 @@ public class FirebaseRemoteConfig {
66
66
* <p>{@link FirebaseRemoteConfig} uses the default {@link FirebaseApp}, so if no {@link
67
67
* FirebaseApp} has been initialized yet, this method throws an {@link IllegalStateException}.
68
68
*
69
- * <p>To identify the current app instance, the fetch request creates a Firebase Instance ID
70
- * token, which periodically sends data to the Firebase backend. To stop the periodic sync, call
71
- * {@link com.google.firebase.iid.FirebaseInstanceId#deleteInstanceId }. To create a new token and
72
- * resume the periodic sync, call {@code fetchConfig } again.
69
+ * <p>To identify the current app instance, the fetch request creates a Firebase Installations ID,
70
+ * which periodically sends data to the Firebase backend. To stop the periodic sync, call
71
+ * {@link com.google.firebase.installations.FirebaseInstallations#delete }. To create a new token
72
+ * and resume the periodic sync, call {@code fetch } again.
73
73
*
74
74
* @return A singleton instance of {@link FirebaseRemoteConfig} for the default {@link
75
75
* FirebaseApp}.
@@ -303,10 +303,10 @@ public Task<Boolean> activate() {
303
303
* FirebaseRemoteConfigSettings.Builder#setMinimumFetchIntervalInSeconds(long)}; the static
304
304
* default is 12 hours.
305
305
*
306
- * <p>To identify the current app instance, the fetch request creates a Firebase Instance ID
307
- * token, which periodically sends data to the Firebase backend. To stop the periodic sync, call
308
- * {@link com.google.firebase.iid.FirebaseInstanceId#deleteInstanceId }. To create a new token and
309
- * resume the periodic sync, call {@code fetchConfig } again.
306
+ * <p>To identify the current app instance, the fetch request creates a Firebase Instance ID,
307
+ * which periodically sends data to the Firebase backend. To stop the periodic sync, call
308
+ * {@link com.google.firebase.installations.FirebaseInstallations#delete }. To create a new token
309
+ * and resume the periodic sync, call {@code fetch } again.
310
310
*
311
311
* @return {@link Task} representing the {@code fetch} call.
312
312
*/
@@ -326,10 +326,10 @@ public Task<Void> fetch() {
326
326
* <p>Depending on the time elapsed since the last fetch from the Firebase Remote Config backend,
327
327
* configs are either served from local storage, or fetched from the backend.
328
328
*
329
- * <p>To identify the current app instance, the fetch request creates a Firebase Instance ID
330
- * token, which periodically sends data to the Firebase backend. To stop the periodic sync, call
331
- * {@link com.google.firebase.iid.FirebaseInstanceId#deleteInstanceId }. To create a new token and
332
- * resume the periodic sync, call {@code fetchConfig } again.
329
+ * <p>To identify the current app instance, the fetch request creates a Firebase Instance ID,
330
+ * which periodically sends data to the Firebase backend. To stop the periodic sync, call
331
+ * {@link com.google.firebase.installations.FirebaseInstallations#delete }. To create a new token
332
+ * and resume the periodic sync, call {@code fetch } again.
333
333
*
334
334
* @param minimumFetchIntervalInSeconds If configs in the local storage were fetched more than
335
335
* this many seconds ago, configs are served from the backend instead of local storage.
0 commit comments