How do you get Google Analytics SDK 1.3 to work in a JavaScript Windows 10 (UWP) app in x64 mode? Referencing the libraries that are installed via the VISX installer on the project page works for x86, but not x64.
When running the application in x64 mode I get the following error:
0x8007007e - JavaScript runtime error: The specified module could not be found.
GoogleAnalyticsSDK
package from the standard nuget.org repository (as described in the docs for XAML apps on the CodePlex site). <ItemGroup>
<Reference Include="GoogleAnalytics">
<HintPath>..\packages\GoogleAnalyticsSDK.1.3.00\lib\uap10.0\GoogleAnalytics.winmd</HintPath>
<IsWinMDFile>true</IsWinMDFile>
</Reference>
<Reference Include="GoogleAnalytics.Core">
<HintPath>..\packages\GoogleAnalyticsSDK.1.3.00\lib\uap10.0\GoogleAnalytics.Core.winmd</HintPath>
</Reference>
</ItemGroup>