- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
26 lines
899 B
Java
26 lines
899 B
Java
package com.google.android.gms.common.internal;
|
|
|
|
import android.os.Bundle;
|
|
import androidx.annotation.Nullable;
|
|
import com.google.android.gms.common.api.internal.ConnectionCallbacks;
|
|
import com.google.android.gms.common.internal.BaseGmsClient;
|
|
|
|
/* loaded from: classes2.dex */
|
|
final class zah implements BaseGmsClient.BaseConnectionCallbacks {
|
|
final /* synthetic */ ConnectionCallbacks zaa;
|
|
|
|
public zah(ConnectionCallbacks connectionCallbacks) {
|
|
this.zaa = connectionCallbacks;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.internal.BaseGmsClient.BaseConnectionCallbacks
|
|
public final void onConnected(@Nullable Bundle bundle) {
|
|
this.zaa.onConnected(bundle);
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.internal.BaseGmsClient.BaseConnectionCallbacks
|
|
public final void onConnectionSuspended(int i) {
|
|
this.zaa.onConnectionSuspended(i);
|
|
}
|
|
}
|