lock255 Well-Known Member Licensed User Longtime User Jul 23, 2014 #1 I downloaded an app from the Play Store, which had the opportunity to not be displayed in the menu. How can I do the same for my app?
I downloaded an app from the Play Store, which had the opportunity to not be displayed in the menu. How can I do the same for my app?
Erel B4X founder Staff member Licensed User Longtime User Jul 24, 2014 #2 You can remove the "home" intent filter from the main activity to remove the icon. Upvote 0
lock255 Well-Known Member Licensed User Longtime User Jul 24, 2014 #3 No, I want does not appear in this menu: I saw that some applications (such as Cerbersu) have the option not to appear in that menu. Upvote 0
No, I want does not appear in this menu: I saw that some applications (such as Cerbersu) have the option not to appear in that menu.
Erel B4X founder Staff member Licensed User Longtime User Jul 28, 2014 #5 Removing the home intent from the manifest file will remove the icon. However the user will not be able to change this setting. Upvote 0
Removing the home intent from the manifest file will remove the icon. However the user will not be able to change this setting.
lock255 Well-Known Member Licensed User Longtime User Jul 28, 2014 #6 How I removing the home intent from the manifest file? Upvote 0
F fanfalveto Active Member Licensed User Longtime User Jul 28, 2014 #7 i think with this B4X: AddReplacement(<category android:name="android.intent.category.LAUNCHER" />, <!--<category android:name="android.intent.category.LAUNCHER" /> -->) SetActivityAttribute(Main, "android:excludeFromRecents", "true") Upvote 0
i think with this B4X: AddReplacement(<category android:name="android.intent.category.LAUNCHER" />, <!--<category android:name="android.intent.category.LAUNCHER" /> -->) SetActivityAttribute(Main, "android:excludeFromRecents", "true")