Context
I have two product flavors free and paid. In free I use advertising and for paid there is no advertising.
I want to use a 3rd party module in my free version of the app, in my particular case AppoDeal for advertising. The integration doc mandates me to add a whole set of <activity>
, <meta-data>
and other tags that are a subset of <application>
tag.
I don't want to polute the base AndroidManifest.xml
file. Is it possible? Is it possible to add this in AndroidManifest.xml
file located in free
directory, recreating/duplicating the <application>
tag? Or is there a better way?
Your advice based on your experience is much appreciated.