IPhone PXL installation packageThe production method is described in this article. The following describes how to createIPhoneMediumPXL installation package. In addition, if you want to create your own Installer installation source, refer to the article "how to build your ownIPhoneInstaller software source.
For details, click the title.
1. CreatePXLFolder
2. Create a PxlPkg. plist in PXL.
Copy the following code
- <?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>CFBundleIdentifier</key>
- <string>Hexin</string>
- <key>RDPxlPackageFiles</key>
- <array>
- <dict>
- <key>destination</key>
- <string>/Applications/HexinIphone.app</string>
- <key>overwrite</key>
- <true />
- <key>permanent</key>
- <false />
- <key>source</key>
- <string>app</string>
- </dict>
- </array>
- <key>RDPxlPackageDesc</key>
- <string>HexinIphone</string>
- <key>RDPxlPackageURL</key>
- <string>HexinIphone</string>
- <key>RDPxlPackageFormat</key>
- <integer>HexinIphone</integer>
- <key>RDPxlPackageIcon</key>
- <string>app/icon.png</string>
- <key>RDPxlPackageName</key>
- <string>HexinIphone</string>
- <key>RDPxlPackageVersion</key>
- <string>0.8</string>
- <key>RDPxlPackagerName</key>
- <string>HexinDB</string>
- <key>RDPxlPackagerContact</key>
- <string>Hexin@kf.com</string>
- </dict>
- </plist>
3. Create an app folder in PXL and write your XXX folder. apps include all the pictures, files, and so on in the program.) Put the folder in the app. Of course, you can) in the <key> source </key> <string> app </string>, change the app name to your favorite folder name, as long as it matches the folder you created.
4. Fill in other information as you like.
5. Then run the command xp on the mac to install cygwin completely. I didn't test it)
- chmod -R 755 ./*
- zip -R /NAME.pxl ./*
6. OK. Use IBUS for installation.
Summary:IPhone PXL installation packageI hope this article will be helpful to you.