Create shortcuts in Home screen android
问题 This question may sound duplicate but there is no answer that i found is working: I have gone through these question(s): Android create shortcuts on the home screen But the proposed solution is not working. I have used the below solution which is working in API Level < 23 Intent shortcutIntent = new Intent(context, LedgerDetailActivity.class); shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); Intent addIntent = new Intent();