Android Question More then 1 ManifestCode

Jmu5667

Well-Known Member
Licensed User
Longtime User
Hello

Is it possilble now/futher to support more then 1 manifest code, and in particular associate a manifest code set with a build configuration. I need to do this for the Playstore. Our flagship app has multiple build configurations, mostly for customer who want an MDM bulid of it. One customer now wants to get the app from the playstore for their MDM rollout. This is causing a problem now for us with permissions that most customer need, but the playstore deny.

Regards

John.
 
Solution
Just use condition compiling directives in the manifest


With the conditional compilation feature you can exclude any code you like from the code editor, manifest editor and designer script (any text can be excluded, including complete subs and attributes).

DonManfred

Expert
Licensed User
Longtime User
Just use condition compiling directives in the manifest


With the conditional compilation feature you can exclude any code you like from the code editor, manifest editor and designer script (any text can be excluded, including complete subs and attributes).
 
Upvote 1
Solution

Jmu5667

Well-Known Member
Licensed User
Longtime User
Just use condition compiling directives in the manifest

thanks Don :)
 
Upvote 0
Top