我正在使用本教程设置Google Play回合制多人游戏:https://developers.google.com/games/services/console/enabling
我已经完成了教程,我认为我做的一切都正确,但我一直收到错误java.lang.IllegalStateException:发生致命的开发人员错误。查看日志以获取更多信息。
当我检查没有过滤器的logcat时(我认为这是“日志”的意思),我看到的唯一相关错误是“应用程序ID(ReplaceMe)必须是数值。请验证您的清单是否指的是正确的项目ID。“
我的项目中存在应用程序ID的所有位置都已替换为我在Developer Console中创建的12位数应用程序,当我在项目中搜索“ReplaceMe”时,没有显示任何内容。
我已经把头发拉了两天。知道我应该做什么吗?
下面是我的清单和values / ids.xml
的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mymikemiller.skeleton">
<application
android:allowBackup="true"
android:fullBackupContent="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@style/Theme.App" >
<meta-data
android:name="com.google.android.gms.games.APP_ID"
android:value="@string/app_id" />
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.mymikemiller.skeleton.SkeletonActivity"
android:screenOrientation="landscape"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
值/ ids.xml:
<resources>
<!-- Insert your app id from the Developer Consoles -->
<string name="app_id"><My 12 digit app id></string>
</resources>
答案 0 :(得分:0)
确保在运行时,您使用了正确的配置。这里的样本:
https://github.com/playgameservices/android-basic-samples/tree/master/BasicSamples
有一堆项目在打开包时全部打开。确保您拥有正确的配置集,否则您将遇到错误,因为其他项目没有设置正确的App Id值。