iOS simulator: could not hardlink copy. Wrong path in my filesystem?

前端 未结 11 988
日久生厌
日久生厌 2021-01-07 22:48

I am using Xcode Version 6.1 (6A1052d)

I am trying to launch an app on the simulator.

The first time it always works fine. If I want to launch a second time,

11条回答
  •  心在旅途
    2021-01-07 23:09

    This is indeed triggered by the order of certain keys in your app's Info.plist file and what seems to be a bug in the iOS simulator's installd process. installd sometimes seems to be unable to read the CFBundleShortVersionString and CFBundleVersion values. I've found that if RoboVM makes sure to always move those values first in the Info.plist it writes out we prevent the bug in installd from being triggered. We have now implemented this workaround in RoboVM (see issue #771) and it will be in the next nightly build (the 20150222 build) and in the next release.

    Nightly builds of RoboVM can be downloaded from http://download.robovm.org. To install a nightly build of the Eclipse plugin you should use the update site

    http://download.robovm.org/nightlies/eclipse/site.xml
    

    Nightly SNAPSHOT builds of the RoboVM Maven and Gradle plugins are pushed to Maven Central.

提交回复
热议问题