Android Question Long press home button icon

Multiverse app

Active Member
Licensed User
Longtime User
I want to change the long press home button icon:

I searched many forums (https://stackoverflow.com/questions...-app-logo-on-drag-from-navbar-like-google-now) all have the same solution of modifying the manifest.

My manifest:
B4X:
'For launching the app on long pressing home button
AddActivityText(main,
<intent-filter>
<action android:name="android.intent.action.ASSIST" />
<meta-data android:name="com.android.systemui.action_assist_icon"
                    android:resource="@drawable/ic_action_assist" />
<category android:name="android.intent.category.DEFAULT" >
</category>
</intent-filter>)

Sadly, it didn't work. Where am i wrong?
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…