Android Question Widget without Activity/App-Icon?

KL7000F

Member
Licensed User
Longtime User
hello,

I have a widget, but do not need any activity or app icon on the launcher (Applist).
How do I do that?
Say only a homescreen widget with auto start, nothing else.

Unfortunately I have not found anything in the forum.

greeting
 

corwin42

Expert
Licensed User
Longtime User
If I remember correctly, add this to the manifest editor:

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