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

Unverified Commit 9ee35e3c authored by DaVinci9196's avatar DaVinci9196 Committed by Marvin W.
Browse files

Add dummy services for PSEUDONYMOUS_ID(52), GASS(116), ACCOUNT_DATA(153) and APP_SET(300) (#2175)



Co-authored-by: default avatarMarvin W <git@larma.de>
parent 37dd2b59
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2023 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.gass.internal;

parcelable GassRequestParcel;
+8 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2023 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.gass.internal;

parcelable GassResponseParcel;
+16 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2023 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.gass.internal;

import android.os.Bundle;
import android.os.IInterface;
import com.google.android.gms.gass.internal.GassRequestParcel;
import com.google.android.gms.gass.internal.GassResponseParcel;

interface IGassService {
    GassResponseParcel getGassResponse(in GassRequestParcel gassRequestParcel) = 0;
    Bundle getGassBundle(in Bundle bundle, int code) = 3;
}
+8 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2023 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.pseudonymous;

parcelable PseudonymousIdToken;
+15 −0
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2023 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

package com.google.android.gms.pseudonymous.internal;

import com.google.android.gms.common.api.Status;
import com.google.android.gms.pseudonymous.PseudonymousIdToken;

interface IPseudonymousIdCallbacks {
    void onGetTokenResponse(in Status status, in PseudonymousIdToken token) = 0;
    void onSetTokenResponse(in Status status) = 1;
    void onGetLastResetWallTimeMsResponse(in Status status, long time) = 2;
}
Loading