Skip to content

Instantly share code, notes, and snippets.

@rodrigotristany
Created October 23, 2020 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodrigotristany/c3d8878b4e6376067c5d9296ed9ba001 to your computer and use it in GitHub Desktop.
Save rodrigotristany/c3d8878b4e6376067c5d9296ed9ba001 to your computer and use it in GitHub Desktop.
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
...
<AndroidManifest>Properties\dev\AndroidManifest.xml</AndroidManifest>
<DefineConstants>DEBUG;</DefineConstants>
...
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugQa|AnyCPU' ">
...
<AndroidManifest>Properties\qa\AndroidManifest.xml</AndroidManifest>
<DefineConstants>__QA__;DEBUGQA;</DefineConstants>
...
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugProd|AnyCPU' ">
...
<AndroidManifest>Properties\prod\AndroidManifest.xml</AndroidManifest>
<DefineConstants>__PROD__;DEBUGPROD;</DefineConstants>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment