I have an application that can be downloaded through the S3 bucket using Enterprise Distribution and it doesnβt work the first time and shows the download, but when I install the certificates manually using the configuration utility, connecting the device to the computer, the same site starts working. I am using Jenkins to create an assembly.
Certificates are not installed automatically, I use the manifest in accordance with the Apple standard. my manifest file contents are as follows:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>assets</key> <array> <dict> <key>kind</key> <string>software-package</string> <key>url</key> <string>https://dev-ios-builds.mycompany.com/AppName-1.0-56-2016-06-07.66.ipa</string> </dict> <dict> <key>kind</key> <string>display-image</string> <key>needs-shine</key> <true/> <key>url</key> <string>https://dev-ios-builds.mycompany.com/images/Icon.png</string> </dict> <dict> <key>kind</key> <string>full-size-image</string> <key>needs-shine</key> <true/> <key>url</key> <string>https://dev-ios-builds.mycompany.com/images/iTunesArtwork.png</string> </dict> </array> <key>metadata</key> <dict> <key>bundle-identifier</key> <string>com.companyname.appname.dev</string> <key>bundle-version</key> <string>1.0</string> <key>kind</key> <string>software</string> <key>title</key> <string>AppName Dev</string> </dict> </dict> </array>
ios jenkins jenkins-plugins
Uma_Shanker_Tiwari
source share