
プログラマーに問題はありません。[アイコンのホーム画面を追加] チェック ボックスをオンにしていることを確認してください。場合によっては、プログラマーがこのコードを記述している可能性があります。
Intent shortcutIntent = new Intent(getApplicationContext(),MainActivity.class);
shortcutIntent.setAction(Intent.ACTION_MAIN);
Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "AppName");
addIntent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(addIntent);
「ホーム画面にアイコンを追加」にチェックを入れても、Playストアで作成されるショートカットを削除したい。したがって、このソリューションはあなたを助けることができます。