Customizations
Multiple environments
We strongly recommend you set up multiple apps in Notificare for several reasons, including the difference between debug and production regarding APNS servers. Given this scenario, you'll have at least two configuration files—one for your DEV app and another for the PROD app in Notificare. You have complete freedom on how you want to configure your build process, but the one requirement we have is that the notificare-services.json
and NotificareServices.plist
files be present in the built app. To include the appropriate configuration files, you can use MSBuild's ItemGroup
condition based on the current configuration as described below.
<ItemGroup Condition="$(TargetFramework.Contains('android')) AND '$(Configuration)' == 'Debug'">
<NotificareServicesJson Include="Platforms\Android\Debug\notificare-services.json" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.Contains('android')) AND '$(Configuration)' == 'Release'">
<NotificareServicesJson Include="Platforms\Android\Release\notificare-services.json" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.Contains('ios')) AND '$(Configuration)' == 'Debug'">
<BundleResource Include="Platforms\iOS\Configurations\Debug\NotificareServices.plist">
<Link>NotificareServices.plist</Link>
</BundleResource>
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.Contains('ios')) AND '$(Configuration)' == 'Release'">
<BundleResource Include="Platforms\iOS\Configurations\Release\NotificareServices.plist">
<Link>NotificareServices.plist</Link>
</BundleResource>
</ItemGroup>
Native customizations
The customizations offered in our library are part of the native SDKs. For more information on what customizations are available, please take a look at the native SDKs documentation.