apphance / Apphance-MobilE-Build-Automation

Mobile Build Automation for iOS, Android and Windows Phone. Maintained by Apphance.
http://ameba.apphance.com
Other
18 stars 5 forks source link

wrong bundle-identifier in manifest.plist #8

Closed peon-pasado-zeitnot closed 2 years ago

peon-pasado-zeitnot commented 11 years ago

Today we had problems with OTA installation. I find out that this wad due to wrong value "pl.polidea.${PRODUCT_NAME:rfc1034identifier}" of "bundle-identifier" key.

Ameba should be able to substitute "PRODUCT_NAME:rfc1034identifier" variable or at least detect "wrong" (using variable) bundle id in info.plist / manifest.plist.

<?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>items</key>
    <array>
      <dict>
        <key>assets</key>
        <array>
          <dict>
            <key>kind</key>
            <string>software-package</string>
            <key>url</key>
            <string>http://ota.polidea.pl/censored/1.0_4/censored1/AdHoc/censored2.ipa</string>
          </dict>
        </array>
        <key>metadata</key>
        <dict>
          <key>bundle-identifier</key>
          <string>pl.polidea.${PRODUCT_NAME:rfc1034identifier}</string>
          <key>bundle-version</key>
          <string>test</string>
          <key>kind</key>
          <string>software</string>
          <key>title</key>
          <string>bwl24</string>
        </dict>
      </dict>
    </array>
  </dict>
</plist>