在 windows 的真实 ios 设备上测试 xamarin 应用程序,无需将设备连接到 mac
Test xamarin app on real ios device from windows without connecting device to mac
我有:
- Windows 10 + VS2019 CE
- iPhone 6
- 远程 Mac(我的 iphone 无法连接到它!)
我完成了所有设置,我可以在 Windows 上的 VS2019 CE 模拟器上测试我的应用程序。但是,如何在真实 iPhone 设备上测试我的应用程序?
警告!我无法将我的 iPhone 连接到远程 mac(通过 USB 或其他方式)。
我希望机会仍然存在。
请帮忙!
有两种方法可以在不连接到 mac 的情况下 运行 应用程序。
使用Hot Restart , we can deploy the app to the real device on windows, but it has some limitations , check https://docs.microsoft.com/en-us/xamarin/xamarin-forms/deploy-test/hot-restart#limitations.
Create ipa file然后在真机上安装,需要Distribution Provisioning Profile,我们可以选择Ad Hoc Testing(这样udid
的真实设备应添加到 Provisioning Profile 中)或 In House / Enterprise Deployment。
我有:
- Windows 10 + VS2019 CE
- iPhone 6
- 远程 Mac(我的 iphone 无法连接到它!) 我完成了所有设置,我可以在 Windows 上的 VS2019 CE 模拟器上测试我的应用程序。但是,如何在真实 iPhone 设备上测试我的应用程序? 警告!我无法将我的 iPhone 连接到远程 mac(通过 USB 或其他方式)。 我希望机会仍然存在。 请帮忙!
有两种方法可以在不连接到 mac 的情况下 运行 应用程序。
使用Hot Restart , we can deploy the app to the real device on windows, but it has some limitations , check https://docs.microsoft.com/en-us/xamarin/xamarin-forms/deploy-test/hot-restart#limitations.
Create ipa file然后在真机上安装,需要Distribution Provisioning Profile,我们可以选择Ad Hoc Testing(这样
udid
的真实设备应添加到 Provisioning Profile 中)或 In House / Enterprise Deployment。