所以我需要为我的程序创建一个LaunchAgent plist文件,以便在启动时运行。我的plist文件有以下文本,但是当我尝试打开plist文件时,xCode告诉我文件数据的格式不正确。此外,我的程序不会在启动时运行,我会认为不正确的数据格式是问题。
我查看了所有内容,并按照我的文件关注LaunchAgents上的Apples文档。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.coremanager.webhelper</string>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>/Users/schmidt73/Library/Developer/Xcode/DerivedData/Linux-dfoidphusbtywcgykdsujjvymczr/Build/Products/Debug/Linux</string>
</dict>
</plist>
我可能做错了什么?