【发布时间】:2017-11-26 08:18:57
【问题描述】:
我正在尝试遵循 this blog 和 Google's Sign-in documentation 中的代码。两者都在 requestPermissions() 调用中引用以下定义:
RC_DRIVE_PERMS
RC_REQUEST_DRIVE_AND_CONTINUE_FILE_CREATION
例如
GoogleSignIn.requestPermissions( this, RC_DRIVE_PERMS,
account, Drive.SCOPE_FILE );
或
requestPermission( Drive.SCOPE_APPFOLDER, RC_REQUEST_DRIVE_AND_CONTINUE_FILE_CREATION );
这些定义或记录在哪里?是否有专门的 GoogleAPI/Android 论坛可以提出此类问题?
【问题讨论】:
标签: android google-api google-drive-api