我应该将什么作为包名称放在"生成OAuth 2.0客户端ID"步?

时间:2016-05-18 18:33:26

标签: android google-play-games

我正在关注" Android游戏服务入门"在Get Started with Play Games Services for Android

在步骤3"生成OAuth 2.0客户端ID"我必须填写"包名称"字段。

我的问题非常简单:我应该在那里键入什么作为包名?像com.google.blahblah这样的任意一个,还是必须是我的Android应用程序包名称?

1 个答案:

答案 0 :(得分:1)

它必须是您的Android程序包名称,即您在Android清单文件中指定的名称。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.android.basiccontactables"
  android:versionCode="1"
  android:versionName="1.0" >

此处,应在“生成客户端ID”步骤中指定package属性中的任何内容。