I am attempting to convert some code I found in a tutorial for my own use. Originally, the code launched the system contacts list when the user would click a notification ge
you should set action and category for Intent.
Intent startMyActivity = new Intent(context, ourClass); startMyActivity .setAction(Intent.ACTION_MAIN); startMyActivity .addCategory(Intent.CATEGORY_LAUNCHER);
it works