1

我正在尝试按照开发者网站的指南将 Firebase 推送通知合并到我现有的 android 应用程序中。

成功构建应用程序后,如何在不将应用程序发布到 Playstore 的情况下测试 Firebase 通知是否正常工作?

相关文件如下所示:

服务/FirebaseMessagingService.java

public class FirebaseNotificationService extends FirebaseMessagingService {
    private static final String TAG = "FirebaseMsgService";

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        super.onMessageReceived(remoteMessage);

        Log.d(TAG, "From: " + remoteMessage.getFrom());
        Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());

        String messageBody = remoteMessage.getNotification().getBody();

        Intent intent = new Intent(this, NavActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
            .setContentTitle("FCM Message")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

        notificationManager.notify(0, notificationBuilder.build());
    }
}

应用程序清单.xml

<service android:name="services.FirebaseNotificationService">
    <intent-filter>
        <action android:name="com.google.firebase.MESSAGING_EVENT" />
    </intent-filter>
</service>

构建.gradle

dependencies {
   compile 'com.google.firebase:firebase-messaging:9.2.1'
}
4

2 回答 2

1

通过 USB 调试运行您的应用程序。它应该可以工作以对其进行测试。或者,您可以将您的应用程序发布到 alpha/beta 版本,然后将其下载到您自己的设备上并进行测试。两种方式都有效

尽管第二种方式包括发布,但它不是完整的发布,因为它仅在封闭的 alpha/beta 中,例如只有您可以访问。

于 2016-07-17T10:36:26.740 回答
0

物理设备的替代方法是使用Genymotion 模拟器来测试它们,只需确保按照本指南(非常简单)安装 Google Play:http: //forum.xda-developers.com/showthread.php? t= 2528952

于 2016-10-27T04:15:51.070 回答