- 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
27 lines
721 B
Java
27 lines
721 B
Java
package com.google.android.gms.internal.drive;
|
|
|
|
import com.google.android.gms.common.api.Status;
|
|
import com.google.android.gms.drive.DriveApi;
|
|
import com.google.android.gms.drive.DriveId;
|
|
|
|
/* loaded from: classes3.dex */
|
|
final class zzao implements DriveApi.DriveIdResult {
|
|
private final Status zzdy;
|
|
private final DriveId zzk;
|
|
|
|
public zzao(Status status, DriveId driveId) {
|
|
this.zzdy = status;
|
|
this.zzk = driveId;
|
|
}
|
|
|
|
@Override // com.google.android.gms.drive.DriveApi.DriveIdResult
|
|
public final DriveId getDriveId() {
|
|
return this.zzk;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.api.Result
|
|
public final Status getStatus() {
|
|
return this.zzdy;
|
|
}
|
|
}
|