Is it possible to add a variable to manifests.xml file ?
For example, I'm setting FCM for my app and there's a piece of code:
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/default_notification_channel_id" />
My app need the @string/default_notification_channel_id
changeable, is there any particalar way to do that ?
Many thanks!