1
ユーザーが自分のステータスバー通知をクリックすると、Activity Intentが起動されます。しかし、何も起こりません、これはLogCatに表示:Intentを起動する際のSecurityException
W/ActivityManager( 85): java.lang.SecurityException: Permission Denial: starting Intent { flg=0x20000000 cmp=cz.fhejl.pubtran.london/cz.fhejl.pubtran.PubtranMapActivity bnds=[0,152][480,248] (has extras) } from null (pid=-1, uid=10049) requires null
アプリパッケージがcz.fhejl.pubtran.londonですが、活動がcz.fhejl.pubtranです。これは問題ですか?私のアプリケーションはライブラリプロジェクトに基づいているので、アプリとアクティビティのパッケージ名は異なっています。
Intent notificationIntent = new Intent(getApplicationContext(), PubtranMapActivity.class);
代わりに
Intent notificationIntent = new Intent(this, PubtranMapActivity.class); // "this" is instance of Service
を使用