Android Question 10.7 - Error in Manifest

MaxRosa

Member
Licensed User
Longtime User
I get this error on comipile after update to B4A 10.7: "AndroidManifest.xml:109: error: unexpected element <meta-data> found in <manifest><application><activity><intent-filter>."

'For launching the app on long pressing home button:
AddActivityText(Conteudo,
<intent-filter>
<meta-data android:name="com.android.systemui.action_assist_icon"
                    android:icon="@drawable/icon" />
                    android:resource="@drawable/icon" />
<action android:name="android.intent.action.ASSIST" />

<category android:name="android.intent.category.DEFAULT">
</category>
</intent-filter>)
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Remove it. It is not allowed. It was ignored before and now there is an error.

 
Upvote 0
Top