This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
Name = "ENABLE_NS_ASSERTIONS"; | |
Type = Boolean; | |
DefaultValue = YES; | |
CommandLineArgs = { | |
YES = (); | |
NO = ("-DNS_BLOCK_ASSERTIONS=1"); | |
}; | |
FileTypes = ( | |
"sourcecode.c.objc", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
modify_services( | |
# Developer username and team ID. | |
username: "[email protected]", | |
team_id: "MYTEAMID", | |
app_identifier: app_id["id"], | |
# Updated capabilities. | |
services: app_id["services"] || {} | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app_ids: | |
- name: DemoApp | |
id: au.com.demo.app | |
services: | |
access_wifi: "off" # Disable Wi-Fi access. | |
app_group: "on" | |
associated_domains: "on" | |
push_notification: "on" | |
wallet: "off" # Disable Wallet access. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lane :create_app_id do | |
Dir["../**/Produce.yml"].each do |file| | |
UI.message("Processing config at path: #{file}") | |
config = YAML.load_file(file) | |
config["app_ids"].each do |app_id| | |
produce( | |
# Developer username and team ID. | |
username: "[email protected]", | |
team_id: "MYTEAMID", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app_ids: | |
- name: DemoApp | |
id: au.com.demo.app | |
services: | |
access_wifi: "on" | |
app_group: "on" | |
associated_domains: "on" | |
push_notification: "on" | |
wallet: "on" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle exec fastlane create_app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lane :create_app do | |
produce( | |
# ... | |
) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
produce( | |
# Developer username and team ID. | |
username: "[email protected]", | |
team_id: "MYTEAMID", | |
# App details. | |
app_identifier: "my.app.id", | |
app_name: "My App Name", | |
# List services to enable for the new app ID. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Build{id=12345, buildConfigurationId=MyBuildConfigurationId, buildNumber=1234, status=SUCCESS, branch=BranchImpl(name=master, isDefault=true)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./gradlew run --args='https://myteamcity.com MyUsername MyPassword MyBuildConfigurationId' |
NewerOlder