Method: FastlaneCore::IpaFileAnalyser.fetch_app_build
- Defined in:
- fastlane_core/lib/fastlane_core/ipa_file_analyser.rb
.fetch_app_build(path) ⇒ Object
Fetches the app build number from the given ipa file.
24 25 26 27 28 |
# File 'fastlane_core/lib/fastlane_core/ipa_file_analyser.rb', line 24 def self.fetch_app_build(path) plist = self.fetch_info_plist_file(path) return plist['CFBundleVersion'] if plist return nil end |