Android Question Firebase AD_ID in manifest

andredamen

Active Member
Licensed User
Longtime User
I want to use firebase notifications and filled my manifest with the following rules:

CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase)
CreateResourceFromFile(Macro, FirebaseAnalytics.Firebase)
CreateResourceFromFile(Macro, FirebaseNotifications.FirebaseNotifications)
CreateResourceFromFile(Macro, FirebaseAnalytics.FirebaseAnalytics)

<uses-permission
android:name="com.google.android.gms.permission.AD_ID"
tools:node="remove" />

<meta-data
android:name="google_analytics_adid_collection_enabled"
android:value="false" />

The CreateResourceFromFile are good but from <uses permission ........ the rules are not exepted in the manifest and gives the following error:
Error parsing manifest script: Line = 167, Word = < Command expected.

How do I get these lines in a good way in the manifest?
 
Top