1

そのため、基本的にこのチュートリアルを段階的に 実行していました。http://developer.android.com/guide/google/gcm/demo.html サーバーに「デバイスが登録されていません」と表示させました。私がしなければならないのは、アプリを起動することだけです。それが私の問題の始まりです。ログ猫レジスタ:

"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>

ちなみに、問題が私のひどいプログラミングによるものではないことを確認するために、プロジェクトをインポートしました。

4

3 に答える 3

0

エミュレーターでGCMを実行するには、エミュレーターでgoogleアカウントを作成する必要があります。作成しましたか?エミュレーターは、正常に実行されるとLogcatにメッセージのみを表示します。

于 2012-10-10T11:21:15.783 に答える
0

GoogleAPIエミュレーターであることを確認してください。また、エミュレータでGmailアカウントを使用してログインします。

于 2012-10-10T11:27:37.727 に答える
-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());
}
于 2012-10-10T11:28:27.483 に答える