1

在 InteliJ IDEA 16 的 GluonMObile-MultiViewProjextwithFXML 演示项目中使用 gradle launchIOSDevice 任务时,得到一个失败:构建失败并出现异常。应用程序验证失败。

相同的应用程序在 iOS iPhone 9.3 上运行良好,但在 9.3 上的 iPad Air2 出现错误。

Android 也可以很好地构建和运行,因此 iPad 似乎有些特殊。

org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':launchIOSDevice'..............
.......
Caused by: org.robovm.libimobiledevice.LibIMobileDeviceException: ApplicationVerificationFailed
    at org.robovm.libimobiledevice.util.AppLauncher$1.error(AppLauncher.java:1001)
4

1 回答 1

1

确保

  • robovm.properties中的app.id参数与您创建的 App ID 匹配
  • Info.plist (/src/ios/assets/Info.plist)中使用了相同的app.id。
<key>CFBundleIdentifier</key>
<string>[Put here your app.id]</string>
于 2016-08-01T05:48:27.520 回答