不推荐使用Drive.DriveApi.getAppFolder(mGoogleApiClient)

问题描述 投票:0回答:1

在尝试设置适用于Android的Google云端硬盘API时,请参阅此行

Drive.DriveApi.getAppFolder(mGoogleApiClient)

我得到的是,DriveApigetAppFolder都被弃用了。

我该怎么替换它?

android google-drive-sdk deprecated
1个回答
2
投票

该弃用已在this reference page正式宣布:

此接口已弃用。使用其中一种Drive#get * Client()方法获取对Drive API的访问权限。

这被替换为getDriveClient等方法,您可以在googledrive/android-demos中看到示例代码演示:

private void initializeDriveClient(GoogleSignInAccount signInAccount) {
        mDriveClient = Drive.getDriveClient(getApplicationContext(), signInAccount);
        mDriveResourceClient = Drive.getDriveResourceClient(getApplicationContext(), signInAccount);
        onDriveClientReady();
    }

查看Drive API for Android了解更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.