fastlane-old / gym

Building your iOS apps has never been easier
https://fastlane.tools
645 stars 54 forks source link

[feature request] change title field in manifest.plist after changing app's display name #214

Closed plrthink closed 8 years ago

plrthink commented 8 years ago

I'm using gym's export_options with fastlane update_info_plist action. But changing app display name doesn't affect title filed in generated manifest.plist file, the title's value still stays unchanged. Below are related lines in my Fastfile

update_info_plist(
  display_name: "new name",
  plist_path: plist_path
)

...

gym(
  export_options: {
    method: "ad-hoc",
    manifest: {
      appURL: "",
      displayImageURL: "",
      fullSizeImageURL: ""
    }
  }
)

And here is generated manifest.plist's related things:

<key>metadata</key>
<dict>
  <key>bundle-version</key>
  <string>1.0</string>
  <key>kind</key> 
  <string>software</string>
  <key>title</key>
  <string>old name</string>
</dict>

As you can see, the title field stays unchanged. Of course I can manually or write a script to change it but I think it makes sense that gym do this work.

Any ideas?

fastlane-bot-helper commented 8 years ago

This issue was migrated to https://github.com/fastlane/fastlane/issues/1821. Please post all further comments there.

fastlane is now a mono repo, you can read more about the change in our blog post. All tools are now available in the fastlane main repo :rocket: