No release in over a year
plugin for doing xcode build configuration specific things
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

xcode_build_configuration plugin

fastlane Plugin Badge

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-xcode_build_configuration, add it to your project by running:

fastlane add_plugin xcode_build_configuration

About xcode_build_configuration

Getting build settings information for relevant build configuration and schemas. Set and Get Version information without using agvtool. For applying this actions, schemes should be shared state.

Actions

get_build_number_by_scheme_and_build_configuration

Get the build number from a xcodeproj for a particular scheme and build configuration.

build_number = get_build_number_by_scheme_and_build_configuration(
                        scheme: 'Scheme Name', 
                        build_configuration_name: 'Build Configuration name')
get_marketing_version_by_scheme_and_build_configuration

Get the marketing version from a xcodeproj for a particular scheme and build configuration.

marketing_version = get_marketing_version_by_scheme_and_build_configuration(
                        scheme: 'Scheme Name', 
                        build_configuration_name: 'Build Configuration name')
set_build_number_by_scheme_and_build_configuration

Set the build number to the xcodeproj for a particular scheme and build configuration.

marketing_version = set_build_number_by_scheme_and_build_configuration(
                        build_number: 'Build Number',                        
                        scheme: 'Scheme Name', 
                        build_configuration_name: 'Build Configuration name')
set_marketing_version_by_scheme_and_build_configuration

Set the marketing version to the xcodeproj for a particular scheme and build configuration.

marketing_version = set_marketing_version_by_scheme_and_build_configuration(
                        marketing_version: 'Marketing Version'                        
                        scheme: 'Scheme Name', 
                        build_configuration_name: 'Build Configuration name')
set_app_version_by_scheme_and_build_configuration

Set the marketing version to the xcodeproj for a particular scheme and build configuration.

marketing_version = set_app_version_by_scheme_and_build_configuration(
                        build_number: 'Build Number',
                        marketing_version: 'Marketing Version',                        
                        scheme: 'Scheme Name', 
                        build_configuration_name: 'Build Configuration name')

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.