Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 7a102091 authored by DaVinci9196's avatar DaVinci9196 Committed by GitHub
Browse files

Auth: Fixed some login failure issues (#3143)



Co-authored-by: default avatarMarvin W <git@larma.de>
parent 748964bf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ buildscript {
    ext.preferenceVersion = '1.2.0'
    ext.recyclerviewVersion = '1.3.2'
    ext.webkitVersion = '1.10.0'
    ext.workVersion = '2.7.0'

    ext.slf4jVersion = '1.7.36'
    ext.volleyVersion = '1.2.1'
+8 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2025 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.auth.api.identity;

parcelable ClearTokenRequest;
 No newline at end of file
+8 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2025 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.auth.api.identity;

parcelable RevokeAccessRequest;
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
@@ -9,8 +9,13 @@ import com.google.android.gms.auth.api.identity.internal.IAuthorizationCallback;
import com.google.android.gms.auth.api.identity.internal.IVerifyWithGoogleCallback;
import com.google.android.gms.auth.api.identity.AuthorizationRequest;
import com.google.android.gms.auth.api.identity.VerifyWithGoogleRequest;
import com.google.android.gms.auth.api.identity.RevokeAccessRequest;
import com.google.android.gms.auth.api.identity.ClearTokenRequest;
import com.google.android.gms.common.api.internal.IStatusCallback;

interface IAuthorizationService {
    void authorize(in IAuthorizationCallback callback, in AuthorizationRequest request) = 0;
    void verifyWithGoogle(in IVerifyWithGoogleCallback callback, in VerifyWithGoogleRequest request) = 1;
    void revokeAccess(in IStatusCallback callback, in RevokeAccessRequest request) = 2;
    void clearToken(in IStatusCallback callback, in ClearTokenRequest request) = 3;
}
 No newline at end of file
+9 −0
Original line number Diff line number Diff line
@@ -143,4 +143,13 @@ public class RevokeAccessRequest extends AbstractSafeParcelable {
    public void writeToParcel(@NonNull Parcel parcel, int flags) {
        CREATOR.writeToParcel(this, parcel, flags);
    }

    @Override
    public String toString() {
        return "RevokeAccessRequest{" +
                "scopes=" + scopes +
                ", account=" + account +
                ", sessionId='" + sessionId + '\'' +
                '}';
    }
}
Loading