gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 08:22:33 24 4
gpt4 key购买 nike

如何获得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. 删除项目中对 GoogleAnalytics 库的任何引用。
  2. 从标准 nuget.org 存储库安装 GoogleAnalyticsSDK 软件包(如 CodePlex 网站上的 XAML 应用文档中所述)。
  3. 此时已引用库,但在 .jsproj 文件中,NuGet 错误地引用了 Windows 8 WinMD 文件并指定了一些导致问题的其他设置。
  4. 在文本编辑器中打开 .jsproj。
  5. 将 GoogleAnalytics 和 GoogleAnalytics.Core 引用更改为如下所示:
    <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>
  • 在 Visual Studio 中重新加载项目,您就可以开始比赛了。
  • 关于javascript - 64 位 JavaScript Windows 10 应用程序中的 GoogleAnalyticsSDK 1.3 - 找不到模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33683238/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com