This file contains hidden or 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
import UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
let rectShape = CAShapeLayer() | |
let bounds = CGRect(x: 400.0, | |
y: 400.0, |
This file contains hidden or 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
import Foundation | |
class A { | |
let bool: Bool | |
let string: String | |
init(bool: Bool = false, string: String = "A") { | |
self.bool = bool | |
self.string = string | |
} |
This file contains hidden or 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
output_directory ENV['BITRISE_DEPLOY_DIR'] |
This file contains hidden or 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
crashlytics( | |
crashlytics_path: "./Crashlytics.framework", | |
api_token: ENV['CRASHLYTICS_API_TOKEN'], | |
build_secret: ENV['CRASHLYTICS_BUILD_SECRET'], | |
ipa_path: "#{ENV['BITRISE_DEPLOY_DIR']}/BitriseFastlaneSample.ipa" | |
) |
This file contains hidden or 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
gym( | |
scheme: "BitriseFastlaneSample", | |
configuration: "Release", | |
output_directory: ENV['BITRISE_DEPLOY_DIR'], | |
output_name: "BitriseFastlaneSample.ipa", | |
use_legacy_build_api: "true" | |
) |
This file contains hidden or 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
scan( | |
scheme: "BitriseFastlaneSample", | |
destination: "name=iPhone 5s,OS=latest", | |
output_directory: ENV['BITRISE_DEPLOY_DIR'] | |
) |
This file contains hidden or 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
match( | |
username: ENV['FASTLANE_USERNAME'], | |
app_identifier: "io.bitrise.BitriseFastlaneSample", | |
readonly: true, | |
type: "appstore" | |
) |
This file contains hidden or 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
cert(username: ENV['FASTLANE_USERNAME']) | |
sigh( | |
force: true, | |
username: ENV['FASTLANE_USERNAME'] | |
) |
This file contains hidden or 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
deps: | |
brew: | |
- name: node |
NewerOlder