Application without icon in app drawer

BaGRoS

Active Member
Licensed User
Longtime User
How do I that my application was not visible in the app drawer?
In the management of applications in the settings menu can be seen.
It has run only as a service.


RESOLVED
 
Last edited:

corwin42

Expert
Licensed User
Longtime User
Adding the following lines to the manifest editor should do the trick:

B4X:
AddReplacement(<action android:name="android.intent.action.MAIN" />, )
AddReplacement(<category android:name="android.intent.category.LAUNCHER" />, )
 
Upvote 0
Top