我应该在 "Generate an OAuth 2.0 client ID" 步骤中输入什么作为包名?

What should I put as package name in "Generate an OAuth 2.0 client ID" step?

我正在关注 Get Started with Play Games Services for Android 的 "Get Started with Play Games Services for Android"。

在第 3 步中 "Generate an OAuth 2.0 client ID" 我必须填写 "Package name" 字段。

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

它必须是您的 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 步骤中指定。