Открытие браузера через уведомления не работает - PullRequest
0 голосов
/ 20 июня 2019

Браузер не открывается и направляет на google.com

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.google.com/"));
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
NotificationCompat.Builder notification =
        new NotificationCompat.Builder(this, "CHANNEL_1")
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle(Integer.toString(i))
                .setContentText("Much longer text that cannot beast fit one line...")
                .setContentIntent(pendingIntent)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...