- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
package com.google.android.gms.drive;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import android.content.IntentSender;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import com.google.android.gms.common.api.GoogleApi;
|
|
import com.google.android.gms.drive.Drive;
|
|
import com.google.android.gms.tasks.Task;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes2.dex */
|
|
public abstract class DriveClient extends GoogleApi<Drive.zza> {
|
|
public DriveClient(@NonNull Context context, @NonNull Drive.zza zzaVar) {
|
|
super(context, Drive.zzw, zzaVar, GoogleApi.Settings.DEFAULT_SETTINGS);
|
|
}
|
|
|
|
@Deprecated
|
|
public abstract Task<DriveId> getDriveId(@NonNull String str);
|
|
|
|
@Deprecated
|
|
public abstract Task<TransferPreferences> getUploadPreferences();
|
|
|
|
@Deprecated
|
|
public abstract Task<IntentSender> newCreateFileActivityIntentSender(CreateFileActivityOptions createFileActivityOptions);
|
|
|
|
@Deprecated
|
|
public abstract Task<IntentSender> newOpenFileActivityIntentSender(OpenFileActivityOptions openFileActivityOptions);
|
|
|
|
@Deprecated
|
|
public abstract Task<Void> requestSync();
|
|
|
|
@Deprecated
|
|
public abstract Task<Void> setUploadPreferences(@NonNull TransferPreferences transferPreferences);
|
|
|
|
public DriveClient(@NonNull Activity activity, @Nullable Drive.zza zzaVar) {
|
|
super(activity, Drive.zzw, zzaVar, GoogleApi.Settings.DEFAULT_SETTINGS);
|
|
}
|
|
}
|