Hide application icon

To Hide app icon from launcher programatically you can do this PackageManager packageManager = context.getPackageManager(); ComponentName componentName = new ComponentName(context, LauncherActivity.class); packageManager.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP); To launch app by pressing number first add folowing permission in mainfest file <uses-permission android:name=”android.permission.PROCESS_OUTGOING_CALLS”/> Then register receiver <receiver android:name=”.LaunchAppViaDialReceiver”> <intent-filter> <action android:name=”android.intent.action.NEW_OUTGOING_CALL”/> </intent-filter> </receiver> Then create a receiver class public … Read more

How to change the application launcher icon on Flutter?

Flutter Launcher Icons has been designed to help quickly generate launcher icons for both Android and iOS: https://pub.dartlang.org/packages/flutter_launcher_icons Add the package to your pubspec.yaml file (within your Flutter project) to use it Within pubspec.yaml file specify the path of the icon you wish to use for the app and then choose whether you want to … Read more