File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
firebase-app-distribution/src/main/java/com/google/firebase/app/distribution Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
22
* Activity opened through Deep Link when returning from web signIn flow. SignIn task is successful
23
23
* when SignInResultActivity is created.
24
24
*/
25
- class SignInResultActivity extends AppCompatActivity {
25
+ public class SignInResultActivity extends AppCompatActivity {
26
26
private static final String TAG = "SignInResultActivity:" ;
27
27
28
28
public SignInResultActivity () {}
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ void onActivityStarted(Activity activity) {
70
70
this .tryCancelAabUpdateTask ();
71
71
}
72
72
73
- public UpdateTaskImpl updateAab (@ NonNull AppDistributionReleaseInternal newRelease ) {
73
+ UpdateTaskImpl updateAab (@ NonNull AppDistributionReleaseInternal newRelease ) {
74
74
synchronized (updateAabLock ) {
75
75
if (cachedUpdateTask != null && !cachedUpdateTask .isComplete ()) {
76
76
return cachedUpdateTask ;
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ public UpdateApkClient(
70
70
this .installApkClient = installApkClient ;
71
71
}
72
72
73
- public UpdateTaskImpl updateApk (
73
+ UpdateTaskImpl updateApk (
74
74
@ NonNull AppDistributionReleaseInternal newRelease , boolean showDownloadNotificationManager ) {
75
75
synchronized (updateTaskLock ) {
76
76
if (cachedUpdateTask != null && !cachedUpdateTask .isComplete ()) {
You can’t perform that action at this time.
0 commit comments