在我回到使用干净的模板活动之前,我已经手动创建了一个使用GoogleAPIClient的应用程序,这导致应用程序(可能)在我的设备上工作,但不在其他任何工作上。
从创建模板Google Play活动开始,我只更改了清单,以包含我在Google Play服务帐户中注册的app_id。启动应用程序时,它会显示Google Play的简短“登录”弹出窗口,然后不断尝试重新连接。在不同的计算机上尝试过不同的设备。尝试过所有者和指定的测试人员帐户。结果相同。
我不能使用任何邀请或房间创建服务。
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.kai.twincrawler" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".TwinCrawlerActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.games.APP_ID"
android:value="@string/app_id"/>
<meta-data android:name="com.google.android.gms.appstate.APP_ID"
android:value="@string/app_id"/>
</application>
</manifest>
感谢您提供的任何帮助。