Skip to content

Adding in api.txt files to ktx and app distribution directories #3110

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 5 commits into from
Nov 8, 2021
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
15 changes: 15 additions & 0 deletions firebase-app-distribution/api.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Signature format: 2.0
package com.google.firebase.app.distribution {
public class FirebaseAppDistribution{
method @NonNull public static com.google.firebase.app.distribution.FirebaseAppDistribution getInstance();
method @NonNull public static com.google.firebase.app.distribution.FirebaseAppDistribution getInstance(@NonNull com.google.firebase.FirebaseApp);
method @NonNull public com.google.firebase.app.distribution.UpdateTask updateIfNewReleaseAvailable();
method @NonNull public com.google.android.gms.tasks.Task<java.lang.Void> signInTester();
method @NonNull public com.google.android.gms.tasks.Task<com.google.firebase.app.distribution.AppDistributionRelease> checkForNewRelease();
method @NonNull public com.google.firebase.app.distribution.UpdateTask updateApp();
method public java.lang.Boolean istesterSignedIn()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing ; at the end of the line here.

method public java.lang.Void signOutTester();
}

}

10 changes: 10 additions & 0 deletions firebase-app-distribution/ktx/api.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Signature format: 2.0
package com.google.firebase.app.distribution.ktx {

public final class FirebaseAppDistributionKt {
ctor public FirebaseAppDistributionKt();
method @NonNull public static com.google.firebase.app.distribution.FirebaseAppDistribution getAppDistribution(@NonNull com.google.firebase.ktx.Firebase);
method @NonNull public static com.google.firebase.app.distribution.FirebaseAppDistribution appDistribution(@NonNull com.google.firebase.ktx.Firebase, @NonNull com.google.firebase.FirebaseApp app);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import androidx.test.internal.runner.junit4.AndroidJUnit4ClassRunner
import com.google.common.truth.Truth
import com.google.firebase.FirebaseApp
import com.google.firebase.FirebaseOptions
import com.google.firebase.appdistribution.FirebaseAppDistribution
import com.google.firebase.app.distribution.FirebaseAppDistribution
import com.google.firebase.ktx.Firebase
import com.google.firebase.ktx.app
import com.google.firebase.ktx.initialize
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package com.google.firebase.app.distribution.ktx
import androidx.annotation.Keep
import com.google.firebase.BuildConfig
import com.google.firebase.FirebaseApp
import com.google.firebase.appdistribution.FirebaseAppDistribution
import com.google.firebase.app.distribution.FirebaseAppDistribution
import com.google.firebase.components.Component
import com.google.firebase.components.ComponentRegistrar
import com.google.firebase.ktx.Firebase
Expand Down