当运行/调试时,GCM应用程序不会安装到模拟器

时间:2012-10-10 11:07:55

标签: android trace

所以,我基本上是一步一步地学习本教程 http://developer.android.com/guide/google/gcm/demo.html 我让服务器给我“没有设备注册!” 我所要做的就是让应用程序启动,这就是我的问题开始的地方。 log cat register:

"Trace - error opening trace file: no such file or directory (2)
AndroidRunTime - Shutting Down VM
dalvikvm - threadid=1: thread exiting with uncaught exception (group=0x40a13300)
AndroidRunTime - FATAL EXCEPTION: main"

清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.google.android.gcm.demo.app"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <permission
        android:name="com.google.android.gcm.demo.app.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission
        android:name="com.google.android.gcm.demo.app.permission.C2D_MESSAGE" />
    <uses-permission
        android:name="com.google.android.c2dm.permission.RECEIVE" />

    <!-- Main activity. -->
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".DemoActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver
            android:name="com.google.android.gcm.GCMBroadcastReceiver"
            android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>
                <!-- Receives the actual messages. -->
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <!-- Receives the registration id. -->
                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
                <category android:name="com.google.android.gcm.demo.app" />
            </intent-filter>
        </receiver>

        <service android:name=".GCMIntentService" />
    </application>

</manifest>

顺便说一下,我导入了这个项目,以确保问题不是来自我糟糕的编程。

3 个答案:

答案 0 :(得分:0)

要在模拟器上运行GCM,您需要在模拟器上创建Google帐户。你有没有创造它? 模拟器显示仅在成功执行时显示Logcat中的消息

答案 1 :(得分:0)

确保它是Google API模拟器。还可以在模拟器中使用gmail帐户登录。

答案 2 :(得分:-1)

如果您已按照GCM演示应用中的所有指南进行操作,那么您可以使用以下方法捕获未捕获的异常:

import android.content.Context;
import android.os.Process;

public class ExceptionHandler implements UncaughtExceptionHandler{

    public ExceptionHandler() {
    }

    @Override
    public void uncaughtException(Thread thread, Throwable ex) {

            // capture the exception information 

        Process.killProcess(Process.myPid());
        System.exit(0);
    }

  }

在您的主要活动中:

@Override
public void onCreate(Bundle bundle) {

    Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler());
}