不推荐使用Drive.DriveApi.getAppFolder(mGoogleApiClient)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不推荐使用Drive.DriveApi.getAppFolder(mGoogleApiClient)相关的知识,希望对你有一定的参考价值。
在尝试设置适用于android的Google云端硬盘API时,请参阅此行
Drive.DriveApi.getAppFolder(mGoogleApiClient)
我得到的是,DriveApi
和getAppFolder
都被弃用了。
我该怎么替换它?
答案
该弃用已在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了解更多信息。
以上是关于不推荐使用Drive.DriveApi.getAppFolder(mGoogleApiClient)的主要内容,如果未能解决你的问题,请参考以下文章
为啥不推荐使用 (javax.servlet.)SingleThreadModel?