さて、ここで問題が発生しました...通知を介してWebブラウザを起動します。
これが私が持っているものです:
notifIntent = new Intent(Intent.ACTION_VIEW);
Uri u = Uri.parse("http://www.google.com");
notifIntent.setData(u);
pendingIntent = PendingIntent.getService(context, 0, notifIntent, PendingIntent.FLAG_UPDATE_CURRENT);
notification = buildNotification(context, pendingIntent, "MY TITEL",
"Heres some text", false, false);
notificationManager.notify(NOTIF_ID, notification);
ですから、私には問題ないように思えますが、それでも...私は「サービスを開始できません」という素晴らしい問題を抱えています。
このサービスは私が作成したものではなく、Googleのサービスであるため、これを解決する方法が本当にわかりません。
ありがとう !