我正在尝试使示例 Android Google+ 应用程序正常工作...(Google 在此处提供的示例应用程序:https ://developers.google.com/+/quickstart/android )
我在“setAction”方法上遇到编译错误:
mPlusClient = new PlusClient.Builder(this, this, this)
.setActions(MomentUtil.ACTIONS) // Compiling error here !
.build();
我得到“对于 PlusClient.Builder 类型的方法 setActions(String[]) 未定义”
有人知道我为什么会收到这个错误???
谢谢 !!