Skip to content

Fix api files. #1041

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions firebase-config/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ package com.google.firebase.remoteconfig {
public static class FirebaseRemoteConfigSettings.Builder {
ctor public FirebaseRemoteConfigSettings.Builder();
method @NonNull public com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings build();
method public long getFetchTimeoutInSeconds();
method public long getMinimumFetchIntervalInSeconds();
method @Deprecated @NonNull public com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings.Builder setDeveloperModeEnabled(boolean);
method @NonNull public com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings.Builder setFetchTimeoutInSeconds(long);
method @NonNull public com.google.firebase.remoteconfig.FirebaseRemoteConfigSettings.Builder setMinimumFetchIntervalInSeconds(long);
method public long getFetchTimeoutInSeconds();
method public long getMinimumFetchIntervalInSeconds();
}

public interface FirebaseRemoteConfigValue {
Expand Down
20 changes: 10 additions & 10 deletions firebase-firestore/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ package com.google.firebase.firestore {

public class FirebaseFirestore {
method @NonNull public com.google.firebase.firestore.ListenerRegistration addSnapshotsInSyncListener(@NonNull Runnable);
method @NonNull public com.google.firebase.firestore.ListenerRegistration addSnapshotsInSyncListener(Activity, @NonNull Runnable);
method @NonNull public com.google.firebase.firestore.ListenerRegistration addSnapshotsInSyncListener(Executor, @NonNull Runnable);
method @NonNull public com.google.firebase.firestore.ListenerRegistration addSnapshotsInSyncListener(@NonNull Activity, @NonNull Runnable);
method @NonNull public com.google.firebase.firestore.ListenerRegistration addSnapshotsInSyncListener(@NonNull Executor, @NonNull Runnable);
method @NonNull public com.google.firebase.firestore.WriteBatch batch();
method @NonNull public Task<Void> clearPersistence();
method @NonNull public com.google.firebase.firestore.CollectionReference collection(@NonNull String);
Expand Down Expand Up @@ -214,15 +214,15 @@ package com.google.firebase.firestore {
ctor public FirebaseFirestoreSettings.Builder();
ctor public FirebaseFirestoreSettings.Builder(@NonNull com.google.firebase.firestore.FirebaseFirestoreSettings);
method @NonNull public com.google.firebase.firestore.FirebaseFirestoreSettings build();
method public long getCacheSizeBytes();
method @NonNull public String getHost();
method public boolean isPersistenceEnabled();
method public boolean isSslEnabled();
method @NonNull public com.google.firebase.firestore.FirebaseFirestoreSettings.Builder setCacheSizeBytes(long);
method @NonNull public com.google.firebase.firestore.FirebaseFirestoreSettings.Builder setHost(@NonNull String);
method @NonNull public com.google.firebase.firestore.FirebaseFirestoreSettings.Builder setPersistenceEnabled(boolean);
method @NonNull public com.google.firebase.firestore.FirebaseFirestoreSettings.Builder setSslEnabled(boolean);
method @Deprecated @NonNull public com.google.firebase.firestore.FirebaseFirestoreSettings.Builder setTimestampsInSnapshotsEnabled(boolean);
method @Nullable public String getHost();
method public boolean isPersistenceEnabled();
method public boolean isSslEnabled();
method public long getCacheSizeBytes();
}

public class GeoPoint {
Expand Down Expand Up @@ -279,16 +279,16 @@ package com.google.firebase.firestore {
method @NonNull public com.google.firebase.firestore.Query startAt(Object...);
method @NonNull public com.google.firebase.firestore.Query whereArrayContains(@NonNull String, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereArrayContains(@NonNull com.google.firebase.firestore.FieldPath, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereArrayContainsAny(@NonNull String, @NonNull List<Object>);
method @NonNull public com.google.firebase.firestore.Query whereArrayContainsAny(@NonNull com.google.firebase.firestore.FieldPath, @NonNull List<Object>);
method @NonNull public com.google.firebase.firestore.Query whereArrayContainsAny(@NonNull String, @NonNull List<? extends Object>);
method @NonNull public com.google.firebase.firestore.Query whereArrayContainsAny(@NonNull com.google.firebase.firestore.FieldPath, @NonNull List<? extends Object>);
method @NonNull public com.google.firebase.firestore.Query whereEqualTo(@NonNull String, @Nullable Object);
method @NonNull public com.google.firebase.firestore.Query whereEqualTo(@NonNull com.google.firebase.firestore.FieldPath, @Nullable Object);
method @NonNull public com.google.firebase.firestore.Query whereGreaterThan(@NonNull String, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereGreaterThan(@NonNull com.google.firebase.firestore.FieldPath, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereGreaterThanOrEqualTo(@NonNull String, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereGreaterThanOrEqualTo(@NonNull com.google.firebase.firestore.FieldPath, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereIn(@NonNull String, @NonNull List<Object>);
method @NonNull public com.google.firebase.firestore.Query whereIn(@NonNull com.google.firebase.firestore.FieldPath, @NonNull List<Object>);
method @NonNull public com.google.firebase.firestore.Query whereIn(@NonNull String, @NonNull List<? extends Object>);
method @NonNull public com.google.firebase.firestore.Query whereIn(@NonNull com.google.firebase.firestore.FieldPath, @NonNull List<? extends Object>);
method @NonNull public com.google.firebase.firestore.Query whereLessThan(@NonNull String, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereLessThan(@NonNull com.google.firebase.firestore.FieldPath, @NonNull Object);
method @NonNull public com.google.firebase.firestore.Query whereLessThanOrEqualTo(@NonNull String, @NonNull Object);
Expand Down
3 changes: 2 additions & 1 deletion firebase-inappmessaging-display/api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ package com.google.firebase.inappmessaging.display {

public class FirebaseInAppMessagingDisplay {
method public void displayMessage(InAppMessage, FirebaseInAppMessagingDisplayCallbacks);
method public static com.google.firebase.inappmessaging.display.FirebaseInAppMessagingDisplay getInstance();
method @NonNull public static com.google.firebase.inappmessaging.display.FirebaseInAppMessagingDisplay getInstance();
}

}

1 change: 1 addition & 0 deletions protolite-well-known-types/api.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Signature format: 2.0