64位JavaScript Windows 10应用程序中的GoogleAnalyticsSDK 1.3 - 无法找到模块

时间:2015-11-12 23:16:34

标签: javascript google-analytics windows-store-apps

如何让Google Analytics SDK 1.3在x64模式下使用JavaScript Windows 10(UWP)应用程序?在项目页面上引用通过VISX安装程序安装的库适用于x86,但不适用于x64。

在x64模式下运行应用程序时出现以下错误:

0x8007007e - JavaScript runtime error: The specified module could not be found. 

1 个答案:

答案 0 :(得分:1)

  1. 删除对项目中的GoogleAnalytics库的任何引用。
  2. 从标准nuget.org存储库安装GoogleAnalyticsSDK包(如CodePlex网站上的XAML应用文档中所述)。
  3. 此时引用了库,但在.jsproj文件中,NuGet错误地引用了Windows 8 WinMD文件,并指定了一些导致问题的其他设置。
  4. 在文本编辑器中打开.jsproj。
  5. 将GoogleAnalytics和GoogleAnalytics.Core引用更改为如下所示:
  6.     <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>
    
    1. 在Visual Studio中重新加载项目,您应该参加比赛。