gpt4 book ai didi

ios - 错误 MT1108 : Could not find developer tools for this device

转载 作者:可可西里 更新时间:2023-11-01 04:55:23 29 4
gpt4 key购买 nike

我有一个 Xamarin iOS 应用程序,当我在“调试”配置上启动该应用程序时,它可以在我的设备上正常运行。现在我创建了一个名为“Staging”的新配置,并将 info.plistentitlements.plist 复制为 info-Staging.plistentitlements-Staging.plist 并希望在“暂存”配置中调试时使用它们。它们之间的唯一区别是不同的标识符 (com.blah.blah)。我这样编辑了 .csproj:

<ItemGroup>
<None Include="packages.config" />

<None Include="Entitlements.plist" Condition="'$(Configuration)' != 'Staging'" />

<None Include="Info.plist" Condition="'$(Configuration)' != 'Staging'" />

<None Include="Info-Staging.plist" Condition="'$(Configuration)' == 'Staging'">
<LogicalName>Info.plist</LogicalName>
</None>

<None Include="Entitlements-Staging.plist" Condition="'$(Configuration)' == 'Staging'">
<LogicalName>Entitlements.plist</LogicalName>
</None>
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Staging|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Staging</OutputPath>
<DefineConstants></DefineConstants>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements-Staging.plist</CodesignEntitlements>
<MtouchNoSymbolStrip>true</MtouchNoSymbolStrip>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<AssemblyName>MyApp.iOS</AssemblyName>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<ConsolePause>false</ConsolePause>
<DeviceSpecificBuild>true</DeviceSpecificBuild>
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>true</MtouchFastDev>
<MtouchFloat32>true</MtouchFloat32>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchTlsProvider>Default</MtouchTlsProvider>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>

但是当我尝试在我的设备上构建应用程序时,我收到了这条消息:

错误 MT1108:找不到此 10.2.1 (14D27) 设备的开发人员工具。请确保您使用的是兼容的 Xcode 版本,然后将此设备连接到 Xcode 以安装开发支持文件。

最佳答案

这个问题很简单实际上只要检查你的 MAC 机器中安装的 Xcode 版本和你系统中现在拥有的 Xamarin 版本是否匹配。为此,您需要将 Visual Studio 作为 Tools/Options/Xamarin checkin

关于ios - 错误 MT1108 : Could not find developer tools for this device,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46081658/

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