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
Copy file name to clipboardExpand all lines: firebase-installations-interop/src/main/java/com/google/firebase/installations/FirebaseInstallationsApi.java
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -24,19 +24,19 @@
24
24
*/
25
25
publicinterfaceFirebaseInstallationsApi {
26
26
27
-
/**
28
-
* Async function that returns a globally unique identifier of this Firebase app installation.
29
-
* This is a url-safe base64 string of a 128-bit integer.
30
-
*/
31
-
Task<String> getId();
27
+
/**
28
+
* Async function that returns a globally unique identifier of this Firebase app installation.
29
+
* This is a url-safe base64 string of a 128-bit integer.
30
+
*/
31
+
Task<String> getId();
32
32
33
-
/** Async function that returns a auth token(public key) of this Firebase app installation. */
34
-
Task<String> getAuthToken();
33
+
/** Async function that returns a auth token(public key) of this Firebase app installation. */
34
+
Task<String> getAuthToken();
35
35
36
-
/**
37
-
* Async function that deletes this Firebase app installation from Firebase backend. This call
38
-
* would possibly lead Firebase Notification, Firebase RemoteConfig, Firebase Predictions or
39
-
* Firebase In-App Messaging not function properly.
40
-
*/
41
-
Task<Void> delete();
42
-
}
36
+
/**
37
+
* Async function that deletes this Firebase app installation from Firebase backend. This call
38
+
* would possibly lead Firebase Notification, Firebase RemoteConfig, Firebase Predictions or
39
+
* Firebase In-App Messaging not function properly.
Copy file name to clipboardExpand all lines: firebase-installations/src/main/java/com/google/firebase/installations/FirebaseInstallationsRegistrar.java
Copy file name to clipboardExpand all lines: firebase-installations/src/test/java/com/google/firebase/installations/FirebaseInstallationsRegistrarTest.java
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,4 @@
15
15
packagecom.google.firebase.installations;
16
16
17
17
/** Tests for {@link FirebaseInstallationsRegistrar}. */
0 commit comments