Android Question Hide apps from the menu

lock255

Well-Known Member
Licensed User
Longtime User
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?
 

lock255

Well-Known Member
Licensed User
Longtime User
No, I want does not appear in this menu:

vpn_android_l2tp_01_settings.png


I saw that some applications (such as Cerbersu) have the option not to appear in that menu.
 
Upvote 0

fanfalveto

Active Member
Licensed User
Longtime User
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
Top