不希望在模拟器上使用Firebase Push通知

时间:2017-04-14 06:40:29

标签: android firebase push-notification firebase-cloud-messaging

我创建的应用程序中我不想在模拟器上收到通知。我只想在真实设备中使用FCM推送通知。那么如何限制模拟器,bluestacks,Genymotion或其他一些模拟器的通知?

我在Google上搜索过,但我没有得到任何解决方案。所以,如果我错过了什么,请提供该链接。

1 个答案:

答案 0 :(得分:0)

如果应用程序在模拟器上启动,则不要订阅firebase通知。

$required_orders = Order::where('order_status','Delivered')->paginate();
return Datatables::of($required_orders)->make(true);

您也可以在本主题How can I detect when an Android application is running in the emulator?

中找到其他一些方法