All,
Just a heads-up to D365 community forum members - We have found a bug in our code which is causing some solutions import having sales team member or customer service team member app failing with error "The licensing value is being changed by a different publisher".
We are looking at this issue on D365 side to have a proper fix in place but meanwhile as a workaround, you can remove the below node from your solution to fix these failures
Before:
<AppConfig>
<IntroducedVersion>9.1.0.0</IntroducedVersion>
<AppModuleUniqueName>APPNAME</AppModuleUniqueName>
<StatusCode>1</StatusCode>
<StateCode>0</StateCode>
<AppConfigInstances>
<AppConfigInstance type="0">
<AppConfigMasterId>{a3733331-6837-453b-9083-de5842968069}</AppConfigMasterId>
<Value>15</Value>
</AppConfigInstance>
</AppConfigInstances>
</AppConfig>
After:
<AppConfig>
<IntroducedVersion>9.1.0.0</IntroducedVersion>
<AppModuleUniqueName>APPNAME</AppModuleUniqueName>
<StatusCode>1</StatusCode>
<StateCode>0</StateCode>
<AppConfigInstances>
</AppConfigInstances>
</AppConfig>