fastlane 2.69.3 → 2.70.0.beta.20171213010003
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fastlane/lib/assets/DefaultFastfileTemplate +2 -2
- data/fastlane/lib/assets/DefaultFastfileTemplate.swift +10 -9
- data/fastlane/lib/fastlane/actions/sync_code_signing.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb +1 -1
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +3 -2
- data/match/lib/match/encrypt.rb +0 -12
- data/match/lib/match/options.rb +1 -2
- metadata +17 -50
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/swift/Appfile.swift +0 -17
- data/fastlane/swift/ArgumentProcessor.swift +0 -72
- data/fastlane/swift/Deliverfile.swift +0 -14
- data/fastlane/swift/DeliverfileProtocol.swift +0 -118
- data/fastlane/swift/Fastfile.swift +0 -12
- data/fastlane/swift/Fastlane.swift +0 -3739
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +0 -409
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/liebowitz.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +0 -103
- data/fastlane/swift/Gymfile.swift +0 -14
- data/fastlane/swift/GymfileProtocol.swift +0 -86
- data/fastlane/swift/LaneFileProtocol.swift +0 -103
- data/fastlane/swift/Matchfile.swift +0 -14
- data/fastlane/swift/MatchfileProtocol.swift +0 -54
- data/fastlane/swift/Precheckfile.swift +0 -14
- data/fastlane/swift/PrecheckfileProtocol.swift +0 -24
- data/fastlane/swift/RubyCommand.swift +0 -138
- data/fastlane/swift/Runner.swift +0 -190
- data/fastlane/swift/RunnerArgument.swift +0 -18
- data/fastlane/swift/Scanfile.swift +0 -14
- data/fastlane/swift/ScanfileProtocol.swift +0 -88
- data/fastlane/swift/Screengrabfile.swift +0 -14
- data/fastlane/swift/ScreengrabfileProtocol.swift +0 -48
- data/fastlane/swift/Snapshotfile.swift +0 -14
- data/fastlane/swift/SnapshotfileProtocol.swift +0 -70
- data/fastlane/swift/SocketClient.swift +0 -283
- data/fastlane/swift/SocketClientDelegateProtocol.swift +0 -19
- data/fastlane/swift/SocketResponse.swift +0 -74
- data/fastlane/swift/main.swift +0 -43
- data/precheck/lib/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2522b08e35e323064b5ad29e7281eb2b1af9f01
|
4
|
+
data.tar.gz: d70ce40e03108561fb779f5ab825595cefc39c91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec36f4166b82bf5178a7353a15900e48362f71cd9852e00dc522d1a914a7c1f59082fda364ff044f881e7e71c0bdcc73930bd71052437f024b2d1aa5f8f8730a
|
7
|
+
data.tar.gz: 3acf38db2351ff73a7cdab7d7fecc4b4e0f4c319c9a3b1ad102901f28244292c33d4b1e76ff25956d93786d67cd0a0c4e05e97a2de8e7a4315a15ae9693c3926
|
@@ -30,7 +30,7 @@ platform :ios do
|
|
30
30
|
desc "Submit a new Beta Build to Apple TestFlight"
|
31
31
|
desc "This will also make sure the profile is up to date"
|
32
32
|
lane :beta do
|
33
|
-
#
|
33
|
+
# match(type: "appstore") # more information: https://codesigning.guide
|
34
34
|
build_app[[SCHEME]] # more options available
|
35
35
|
upload_to_testflight
|
36
36
|
|
@@ -42,7 +42,7 @@ platform :ios do
|
|
42
42
|
lane :release do
|
43
43
|
# sync_code_signing(type: "appstore")
|
44
44
|
capture_screenshots
|
45
|
-
build_app[[SCHEME]] # more options available
|
45
|
+
build_app[[SCHEME]] # Build your app - more options available
|
46
46
|
upload_to_app_store(force: true)
|
47
47
|
# frame_screenshots
|
48
48
|
end
|
@@ -24,26 +24,27 @@ class Fastfile: LaneFile {
|
|
24
24
|
|
25
25
|
func testLane() {
|
26
26
|
desc("Runs all the tests")
|
27
|
-
|
27
|
+
scan()
|
28
28
|
}
|
29
29
|
|
30
30
|
func betaLane() {
|
31
31
|
desc("Submit a new Beta Build to Apple TestFlight. This will also make sure the profile is up to date")
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
match(gitUrl: "gitUrl", appIdentifier: [appIdentifier], username: appleID)
|
34
|
+
// Build your app - more options available
|
35
|
+
gym([[SCHEME]])
|
36
|
+
pilot(username: appleID)
|
36
37
|
// You can also use other beta testing services here (run `fastlane actions`)
|
37
38
|
}
|
38
39
|
|
39
40
|
func releaseLane() {
|
40
41
|
desc("Deploy a new version to the App Store")
|
41
42
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
//
|
43
|
+
match(gitUrl: "gitUrl", type: "appstore", appIdentifier: [appIdentifier], username: appleID)
|
44
|
+
snapshot()
|
45
|
+
gym([[SCHEME]]) // Build your app - more options available
|
46
|
+
deliver(username: appleID, app: appIdentifier, force: true)
|
47
|
+
// frameit()
|
47
48
|
}
|
48
49
|
|
49
50
|
// You can define as many lanes as you want
|
@@ -84,7 +84,7 @@ module Fastlane
|
|
84
84
|
|
85
85
|
def self.example_code
|
86
86
|
[
|
87
|
-
'sync_code_signing(type: "appstore", app_identifier: "tools.fastlane.app")',
|
87
|
+
'sync_code_signing(type: "appstore", app_identifier: ["tools.fastlane.app"])',
|
88
88
|
'sync_code_signing(type: "development", readonly: true)',
|
89
89
|
'sync_code_signing(app_identifier: ["tools.fastlane.app", "tools.fastlane.sleepy"])',
|
90
90
|
'match # alias for "sync_code_signing"'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.
|
2
|
+
VERSION = '2.70.0.beta.20171213010003'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -5,7 +5,6 @@
|
|
5
5
|
# `incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError)`
|
6
6
|
|
7
7
|
require 'tempfile'
|
8
|
-
require 'fastlane_core/core_ext/cfpropertylist'
|
9
8
|
|
10
9
|
module Gym
|
11
10
|
# Responsible for building the fully working xcodebuild command
|
@@ -160,6 +159,8 @@ module Gym
|
|
160
159
|
end
|
161
160
|
|
162
161
|
def config_content
|
162
|
+
require 'plist'
|
163
|
+
|
163
164
|
hash = read_export_options
|
164
165
|
|
165
166
|
# Overrides export options if needed
|
@@ -184,7 +185,7 @@ module Gym
|
|
184
185
|
if FastlaneCore::Globals.verbose?
|
185
186
|
UI.message("This results in the following plist file:")
|
186
187
|
UI.command_output("-----------------------------------------")
|
187
|
-
UI.command_output(hash
|
188
|
+
UI.command_output(to_plist(hash))
|
188
189
|
UI.command_output("-----------------------------------------")
|
189
190
|
end
|
190
191
|
|
data/match/lib/match/encrypt.rb
CHANGED
@@ -93,18 +93,6 @@ module Match
|
|
93
93
|
success = system(command.join(' '))
|
94
94
|
|
95
95
|
UI.crash!("Error decrypting '#{path}'") unless success
|
96
|
-
|
97
|
-
# On non-Mac systems (more specific Ubuntu Linux) it might take some time for the file to actually be there (see #11182).
|
98
|
-
# To try to circumvent this flakyness (in tests), we wait a bit until the file appears (max 2s) (usually only 0.1 is actually waited)
|
99
|
-
unless FastlaneCore::Helper.is_mac?
|
100
|
-
count = 0
|
101
|
-
# sleep until file exists or 20*0.1s (=2s) passed
|
102
|
-
until File.exist?(tmpfile) || count == 20
|
103
|
-
sleep(0.1)
|
104
|
-
count += 1
|
105
|
-
end
|
106
|
-
end
|
107
|
-
|
108
96
|
FileUtils.mv(tmpfile, path)
|
109
97
|
end
|
110
98
|
end
|
data/match/lib/match/options.rb
CHANGED
@@ -33,8 +33,7 @@ module Match
|
|
33
33
|
env_name: "MATCH_APP_IDENTIFIER",
|
34
34
|
description: "The bundle identifier(s) of your app (comma-separated)",
|
35
35
|
is_string: false,
|
36
|
-
type: Array,
|
37
|
-
skip_type_validation: true,
|
36
|
+
type: Array,
|
38
37
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
|
39
38
|
FastlaneCore::ConfigItem.new(key: :username,
|
40
39
|
short_option: "-u",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.70.0.beta.20171213010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-12-
|
18
|
+
date: 2017-12-13 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -848,7 +848,6 @@ files:
|
|
848
848
|
- fastlane/lib/assets/s3_plist_template.erb
|
849
849
|
- fastlane/lib/assets/s3_version_template.erb
|
850
850
|
- fastlane/lib/fastlane.rb
|
851
|
-
- fastlane/lib/fastlane/.DS_Store
|
852
851
|
- fastlane/lib/fastlane/action.rb
|
853
852
|
- fastlane/lib/fastlane/action_collector.rb
|
854
853
|
- fastlane/lib/fastlane/actions/README.md
|
@@ -1200,36 +1199,6 @@ files:
|
|
1200
1199
|
- fastlane/lib/fastlane/swift_lane_manager.rb
|
1201
1200
|
- fastlane/lib/fastlane/tools.rb
|
1202
1201
|
- fastlane/lib/fastlane/version.rb
|
1203
|
-
- fastlane/swift/Appfile.swift
|
1204
|
-
- fastlane/swift/ArgumentProcessor.swift
|
1205
|
-
- fastlane/swift/Deliverfile.swift
|
1206
|
-
- fastlane/swift/DeliverfileProtocol.swift
|
1207
|
-
- fastlane/swift/Fastfile.swift
|
1208
|
-
- fastlane/swift/Fastlane.swift
|
1209
|
-
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1210
|
-
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1211
|
-
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/liebowitz.xcuserdatad/UserInterfaceState.xcuserstate
|
1212
|
-
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1213
|
-
- fastlane/swift/Gymfile.swift
|
1214
|
-
- fastlane/swift/GymfileProtocol.swift
|
1215
|
-
- fastlane/swift/LaneFileProtocol.swift
|
1216
|
-
- fastlane/swift/Matchfile.swift
|
1217
|
-
- fastlane/swift/MatchfileProtocol.swift
|
1218
|
-
- fastlane/swift/Precheckfile.swift
|
1219
|
-
- fastlane/swift/PrecheckfileProtocol.swift
|
1220
|
-
- fastlane/swift/RubyCommand.swift
|
1221
|
-
- fastlane/swift/Runner.swift
|
1222
|
-
- fastlane/swift/RunnerArgument.swift
|
1223
|
-
- fastlane/swift/Scanfile.swift
|
1224
|
-
- fastlane/swift/ScanfileProtocol.swift
|
1225
|
-
- fastlane/swift/Screengrabfile.swift
|
1226
|
-
- fastlane/swift/ScreengrabfileProtocol.swift
|
1227
|
-
- fastlane/swift/Snapshotfile.swift
|
1228
|
-
- fastlane/swift/SnapshotfileProtocol.swift
|
1229
|
-
- fastlane/swift/SocketClient.swift
|
1230
|
-
- fastlane/swift/SocketClientDelegateProtocol.swift
|
1231
|
-
- fastlane/swift/SocketResponse.swift
|
1232
|
-
- fastlane/swift/main.swift
|
1233
1202
|
- fastlane_core/README.md
|
1234
1203
|
- fastlane_core/lib/assets/XMLTemplate.xml.erb
|
1235
1204
|
- fastlane_core/lib/fastlane_core.rb
|
@@ -1359,7 +1328,6 @@ files:
|
|
1359
1328
|
- pilot/lib/pilot/tester_manager.rb
|
1360
1329
|
- pilot/lib/pilot/tester_util.rb
|
1361
1330
|
- precheck/README.md
|
1362
|
-
- precheck/lib/.DS_Store
|
1363
1331
|
- precheck/lib/assets/PrecheckfileTemplate
|
1364
1332
|
- precheck/lib/assets/PrecheckfileTemplate.swift
|
1365
1333
|
- precheck/lib/precheck.rb
|
@@ -1575,24 +1543,24 @@ metadata:
|
|
1575
1543
|
post_install_message:
|
1576
1544
|
rdoc_options: []
|
1577
1545
|
require_paths:
|
1578
|
-
-
|
1579
|
-
-
|
1580
|
-
- deliver/lib
|
1581
|
-
- fastlane/lib
|
1582
|
-
- fastlane_core/lib
|
1583
|
-
- frameit/lib
|
1584
|
-
- gym/lib
|
1546
|
+
- supply/lib
|
1547
|
+
- screengrab/lib
|
1585
1548
|
- match/lib
|
1586
|
-
- pem/lib
|
1587
|
-
- pilot/lib
|
1588
1549
|
- precheck/lib
|
1550
|
+
- sigh/lib
|
1589
1551
|
- produce/lib
|
1590
1552
|
- scan/lib
|
1591
|
-
-
|
1592
|
-
- sigh/lib
|
1553
|
+
- gym/lib
|
1593
1554
|
- snapshot/lib
|
1555
|
+
- frameit/lib
|
1556
|
+
- fastlane/lib
|
1557
|
+
- cert/lib
|
1558
|
+
- pilot/lib
|
1594
1559
|
- spaceship/lib
|
1595
|
-
-
|
1560
|
+
- credentials_manager/lib
|
1561
|
+
- deliver/lib
|
1562
|
+
- fastlane_core/lib
|
1563
|
+
- pem/lib
|
1596
1564
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1597
1565
|
requirements:
|
1598
1566
|
- - ">="
|
@@ -1600,15 +1568,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1600
1568
|
version: 2.0.0
|
1601
1569
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1602
1570
|
requirements:
|
1603
|
-
- - "
|
1571
|
+
- - ">"
|
1604
1572
|
- !ruby/object:Gem::Version
|
1605
|
-
version:
|
1573
|
+
version: 1.3.1
|
1606
1574
|
requirements: []
|
1607
1575
|
rubyforge_project:
|
1608
|
-
rubygems_version: 2.
|
1576
|
+
rubygems_version: 2.4.5.1
|
1609
1577
|
signing_key:
|
1610
1578
|
specification_version: 4
|
1611
1579
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1612
1580
|
Android apps
|
1613
1581
|
test_files: []
|
1614
|
-
has_rdoc:
|
Binary file
|
@@ -1,17 +0,0 @@
|
|
1
|
-
// This class is automatically included in FastlaneRunner during build
|
2
|
-
// If you have a custom Appfile.swift, this file will be replaced by it
|
3
|
-
// Don't modify this file unless you are familiar with how fastlane's swift code generation works
|
4
|
-
// *** This file will be overwritten or replaced during build time ***
|
5
|
-
|
6
|
-
var appIdentifier: String { return "" } // The bundle identifier of your app
|
7
|
-
var appleID: String { return "" } // Your Apple email address
|
8
|
-
|
9
|
-
var teamID: String { return "" } // Developer Portal Team ID
|
10
|
-
var itcTeam: String? { return nil } // iTunes Connect Team ID (may be nil if no team)
|
11
|
-
|
12
|
-
// you can even provide different app identifiers, Apple IDs and team names per lane:
|
13
|
-
// More information: https://docs.fastlane.tools/advanced/#appfile
|
14
|
-
|
15
|
-
// Please don't remove the lines below
|
16
|
-
// They are used to detect outdated files
|
17
|
-
// FastlaneRunnerAPIVersion [0.9.1]
|
@@ -1,72 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// ArgumentProcessor.swift
|
3
|
-
// FastlaneRunner
|
4
|
-
//
|
5
|
-
// Created by Joshua Liebowitz on 9/28/17.
|
6
|
-
// Copyright © 2017 Joshua Liebowitz. All rights reserved.
|
7
|
-
//
|
8
|
-
|
9
|
-
import Foundation
|
10
|
-
|
11
|
-
struct ArgumentProcessor {
|
12
|
-
let args: [RunnerArgument]
|
13
|
-
let currentLane: String
|
14
|
-
let commandTimeout: Int
|
15
|
-
|
16
|
-
init(args: [String]) {
|
17
|
-
// Dump the first arg which is the program name
|
18
|
-
let fastlaneArgs = stride(from: 1, to: args.count - 1, by: 2).map {
|
19
|
-
RunnerArgument(name: args[$0], value: args[$0+1])
|
20
|
-
}
|
21
|
-
self.args = fastlaneArgs
|
22
|
-
|
23
|
-
let fastlaneArgsMinusLanes = fastlaneArgs.filter { arg in
|
24
|
-
return arg.name.lowercased() != "lane"
|
25
|
-
}
|
26
|
-
|
27
|
-
let potentialLogMode = fastlaneArgsMinusLanes.filter { arg in
|
28
|
-
return arg.name.lowercased() == "logmode"
|
29
|
-
}
|
30
|
-
|
31
|
-
// Configure logMode since we might need to use it before we finish parsing
|
32
|
-
if let logModeArg = potentialLogMode.first {
|
33
|
-
let logModeString = logModeArg.value
|
34
|
-
Logger.logMode = Logger.LogMode(logMode: logModeString)
|
35
|
-
}
|
36
|
-
|
37
|
-
let lanes = self.args.filter { arg in
|
38
|
-
return arg.name.lowercased() == "lane"
|
39
|
-
}
|
40
|
-
verbose(message: lanes.description)
|
41
|
-
|
42
|
-
guard lanes.count == 1 else {
|
43
|
-
let message = "You must have exactly one lane specified as an arg, here's what I got: \(lanes)"
|
44
|
-
log(message: message)
|
45
|
-
fatalError(message)
|
46
|
-
}
|
47
|
-
|
48
|
-
let lane = lanes.first!
|
49
|
-
self.currentLane = lane.value
|
50
|
-
|
51
|
-
// User might have configured a timeout for the socket connection
|
52
|
-
let potentialTimeout = fastlaneArgsMinusLanes.filter { arg in
|
53
|
-
return arg.name.lowercased() == "timeoutSeconds"
|
54
|
-
}
|
55
|
-
|
56
|
-
if let logModeArg = potentialLogMode.first {
|
57
|
-
let logModeString = logModeArg.value
|
58
|
-
Logger.logMode = Logger.LogMode(logMode: logModeString)
|
59
|
-
}
|
60
|
-
|
61
|
-
if let timeoutArg = potentialTimeout.first {
|
62
|
-
let timeoutString = timeoutArg.value
|
63
|
-
self.commandTimeout = (timeoutString as NSString).integerValue
|
64
|
-
} else {
|
65
|
-
self.commandTimeout = SocketClient.defaultCommandTimeoutSeconds
|
66
|
-
}
|
67
|
-
}
|
68
|
-
}
|
69
|
-
|
70
|
-
// Please don't remove the lines below
|
71
|
-
// They are used to detect outdated files
|
72
|
-
// FastlaneRunnerAPIVersion [0.9.1]
|
@@ -1,14 +0,0 @@
|
|
1
|
-
// This class is automatically included in FastlaneRunner during build
|
2
|
-
|
3
|
-
// This autogenerated file will be overwritten or replaced during build time, or when you initialize `deliver`
|
4
|
-
class Deliverfile: DeliverfileProtocol {
|
5
|
-
// If you want to enable `deliver`, run `fastlane deliver init`
|
6
|
-
// After, this file will be replaced with a custom implementation that contains values you supplied
|
7
|
-
// during the `init` process, and you won't see this message
|
8
|
-
}
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
// Generated with fastlane 2.69.2
|
@@ -1,118 +0,0 @@
|
|
1
|
-
protocol DeliverfileProtocol: class {
|
2
|
-
var username: String { get }
|
3
|
-
var appIdentifier: String? { get }
|
4
|
-
var app: String { get }
|
5
|
-
var editLive: Bool { get }
|
6
|
-
var ipa: String? { get }
|
7
|
-
var pkg: String? { get }
|
8
|
-
var platform: String { get }
|
9
|
-
var metadataPath: String? { get }
|
10
|
-
var screenshotsPath: String? { get }
|
11
|
-
var skipBinaryUpload: Bool { get }
|
12
|
-
var skipScreenshots: Bool { get }
|
13
|
-
var appVersion: String? { get }
|
14
|
-
var skipMetadata: Bool { get }
|
15
|
-
var skipAppVersionUpdate: Bool { get }
|
16
|
-
var force: Bool { get }
|
17
|
-
var submitForReview: Bool { get }
|
18
|
-
var automaticRelease: Bool { get }
|
19
|
-
var autoReleaseDate: String? { get }
|
20
|
-
var phasedRelease: Bool { get }
|
21
|
-
var priceTier: String? { get }
|
22
|
-
var buildNumber: String? { get }
|
23
|
-
var appRatingConfigPath: String? { get }
|
24
|
-
var submissionInformation: String? { get }
|
25
|
-
var teamId: String? { get }
|
26
|
-
var teamName: String? { get }
|
27
|
-
var devPortalTeamId: String? { get }
|
28
|
-
var devPortalTeamName: String? { get }
|
29
|
-
var itcProvider: String? { get }
|
30
|
-
var overwriteScreenshots: Bool { get }
|
31
|
-
var runPrecheckBeforeSubmit: Bool { get }
|
32
|
-
var precheckDefaultRuleLevel: String { get }
|
33
|
-
var appIcon: String? { get }
|
34
|
-
var appleWatchAppIcon: String? { get }
|
35
|
-
var copyright: String? { get }
|
36
|
-
var primaryCategory: String? { get }
|
37
|
-
var secondaryCategory: String? { get }
|
38
|
-
var primaryFirstSubCategory: String? { get }
|
39
|
-
var primarySecondSubCategory: String? { get }
|
40
|
-
var secondaryFirstSubCategory: String? { get }
|
41
|
-
var secondarySecondSubCategory: String? { get }
|
42
|
-
var tradeRepresentativeContactInformation: [String : Any]? { get }
|
43
|
-
var appReviewInformation: [String : Any]? { get }
|
44
|
-
var description: String? { get }
|
45
|
-
var name: String? { get }
|
46
|
-
var subtitle: [String : Any]? { get }
|
47
|
-
var keywords: [String : Any]? { get }
|
48
|
-
var promotionalText: [String : Any]? { get }
|
49
|
-
var releaseNotes: String? { get }
|
50
|
-
var privacyUrl: String? { get }
|
51
|
-
var supportUrl: String? { get }
|
52
|
-
var marketingUrl: String? { get }
|
53
|
-
var languages: [String]? { get }
|
54
|
-
var ignoreLanguageDirectoryValidation: Bool { get }
|
55
|
-
var precheckIncludeInAppPurchases: Bool { get }
|
56
|
-
}
|
57
|
-
|
58
|
-
extension DeliverfileProtocol {
|
59
|
-
var username: String { return "" }
|
60
|
-
var appIdentifier: String? { return nil }
|
61
|
-
var app: String { return "" }
|
62
|
-
var editLive: Bool { return false }
|
63
|
-
var ipa: String? { return nil }
|
64
|
-
var pkg: String? { return nil }
|
65
|
-
var platform: String { return "ios" }
|
66
|
-
var metadataPath: String? { return nil }
|
67
|
-
var screenshotsPath: String? { return nil }
|
68
|
-
var skipBinaryUpload: Bool { return false }
|
69
|
-
var skipScreenshots: Bool { return false }
|
70
|
-
var appVersion: String? { return nil }
|
71
|
-
var skipMetadata: Bool { return false }
|
72
|
-
var skipAppVersionUpdate: Bool { return false }
|
73
|
-
var force: Bool { return false }
|
74
|
-
var submitForReview: Bool { return false }
|
75
|
-
var automaticRelease: Bool { return false }
|
76
|
-
var autoReleaseDate: String? { return nil }
|
77
|
-
var phasedRelease: Bool { return false }
|
78
|
-
var priceTier: String? { return nil }
|
79
|
-
var buildNumber: String? { return nil }
|
80
|
-
var appRatingConfigPath: String? { return nil }
|
81
|
-
var submissionInformation: String? { return nil }
|
82
|
-
var teamId: String? { return nil }
|
83
|
-
var teamName: String? { return nil }
|
84
|
-
var devPortalTeamId: String? { return nil }
|
85
|
-
var devPortalTeamName: String? { return nil }
|
86
|
-
var itcProvider: String? { return nil }
|
87
|
-
var overwriteScreenshots: Bool { return false }
|
88
|
-
var runPrecheckBeforeSubmit: Bool { return true }
|
89
|
-
var precheckDefaultRuleLevel: String { return "warn" }
|
90
|
-
var appIcon: String? { return nil }
|
91
|
-
var appleWatchAppIcon: String? { return nil }
|
92
|
-
var copyright: String? { return nil }
|
93
|
-
var primaryCategory: String? { return nil }
|
94
|
-
var secondaryCategory: String? { return nil }
|
95
|
-
var primaryFirstSubCategory: String? { return nil }
|
96
|
-
var primarySecondSubCategory: String? { return nil }
|
97
|
-
var secondaryFirstSubCategory: String? { return nil }
|
98
|
-
var secondarySecondSubCategory: String? { return nil }
|
99
|
-
var tradeRepresentativeContactInformation: [String : Any]? { return nil }
|
100
|
-
var appReviewInformation: [String : Any]? { return nil }
|
101
|
-
var description: String? { return nil }
|
102
|
-
var name: String? { return nil }
|
103
|
-
var subtitle: [String : Any]? { return nil }
|
104
|
-
var keywords: [String : Any]? { return nil }
|
105
|
-
var promotionalText: [String : Any]? { return nil }
|
106
|
-
var releaseNotes: String? { return nil }
|
107
|
-
var privacyUrl: String? { return nil }
|
108
|
-
var supportUrl: String? { return nil }
|
109
|
-
var marketingUrl: String? { return nil }
|
110
|
-
var languages: [String]? { return nil }
|
111
|
-
var ignoreLanguageDirectoryValidation: Bool { return false }
|
112
|
-
var precheckIncludeInAppPurchases: Bool { return true }
|
113
|
-
}
|
114
|
-
|
115
|
-
|
116
|
-
// Please don't remove the lines below
|
117
|
-
// They are used to detect outdated files
|
118
|
-
// FastlaneRunnerAPIVersion [0.9.1]
|