Fix issue with shortcuts on hidden app

Этот коммит содержится в:
Anton Tananaev
2016-04-23 15:08:17 +12:00
родитель 6bffc7bbc1
Коммит 7dc7f32110
+1 -1
Просмотреть файл
@@ -132,7 +132,7 @@ public class MainActivity extends PreferenceActivity implements OnSharedPreferen
private void addShortcuts(boolean start, int name) { private void addShortcuts(boolean start, int name) {
Intent shortcutIntent = new Intent(Intent.ACTION_MAIN); Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
shortcutIntent.setComponent(new ComponentName(getPackageName(), ".ShortcutActivity")); shortcutIntent.setComponent(new ComponentName(getPackageName(), ShortcutActivity.class.getCanonicalName()));
shortcutIntent.putExtra(ShortcutActivity.EXTRA_ACTION, start); shortcutIntent.putExtra(ShortcutActivity.EXTRA_ACTION, start);
Intent installShortCutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); Intent installShortCutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");