Microsoft AppCenter provides a popular set of tools that enable crash reporting, application analytics, and other features for integrating applications. Due to the design of AppCenter, it brings in several transitive NuGet dependencies that include assets that conflict with SQLCipher packages. As such, we recommend including the following explicit PackageReference
statements in any project file that includes AppCenter.
<PackageReference Include="sqlite-net-pcl">
<Version>*</Version>
<ExcludeAssets>All</ExcludeAssets>
</PackageReference>
<PackageReference Include="SQLitePCLRaw.bundle_green">
<Version>*</Version>
<ExcludeAssets>All</ExcludeAssets>
</PackageReference>
This same technique can be used to resolve conflicts with any other package that include a dependency on sqlite-net-pcl
or any non-Zetetic SQLitePCLRaw
bundles.