我正在尝试运行Google教程中的代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
credential = GoogleAccountCredential.usingOAuth2(this, Collections.singleton(DriveScopes.DRIVE));
startActivityForResult(credential.newChooseAccountIntent(), REQUEST_ACCOUNT_PICKER);
}
但是我收到了这个错误:
过了一会儿,我得到了这个弹出错误(我正在使用eclipse)
虽然我拥有它:
我该如何解决这个问题?