Зарегистрированное событие не происходит после обновления до Android Pie - PullRequest
0 голосов
/ 15 февраля 2019

Мы создали гибридное приложение, используя телефонный разрыв.До сих пор я хорошо использовал плагин GCM.Однако если вы обновите свой телефон с помощью Android pie (9.0), событие onRegistered не будет происходить.Я не выхожу по этому вопросу, когда я Google.Я прошу совета у ваших советников.

public void onRegistered(Context context, String regId) {
    Log.v(TAG, "onRegistered: "+ regId);
    JSONObject json;
    try
    {
        json = new JSONObject().put("event", "registered");
        json.put("regid", regId);

        Log.v(TAG, "onRegistered: " + json.toString());

        // Send this JSON data to the JavaScript application above EVENT should be set to the msg type
        // In this case this is the registration ID
        PushPlugin.sendJavascript( json );
    }
    catch( JSONException e)
    {
        // No message to the user is sent, JSON failed
        Log.e(TAG, "onRegistered: JSON exception");
    }
}
...