fastlane 2.229.0 → 2.230.0
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/README.md +100 -94
- data/deliver/lib/assets/summary.html.erb +3 -3
- data/deliver/lib/deliver/app_screenshot.rb +215 -347
- data/deliver/lib/deliver/app_screenshot_iterator.rb +4 -1
- data/deliver/lib/deliver/app_screenshot_validator.rb +5 -21
- data/deliver/lib/deliver/loader.rb +2 -9
- data/deliver/lib/deliver/upload_metadata.rb +5 -0
- data/deliver/lib/deliver/upload_screenshots.rb +4 -2
- data/fastlane/lib/fastlane/actions/docs/create_app_online.md +2 -1
- data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +3 -1
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +34 -6
- data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +2 -0
- data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +3 -2
- data/fastlane/lib/fastlane/actions/modify_services.rb +1 -0
- data/fastlane/lib/fastlane/actions/notarize.rb +1 -1
- data/fastlane/lib/fastlane/actions/xcov.rb +1 -7
- data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +4 -4
- data/fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml +20 -20
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +1 -1
- data/fastlane/swift/Fastlane.swift +85 -13
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +9 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/ScanfileProtocol.swift +5 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SnapshotfileProtocol.swift +5 -1
- data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +5 -1
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +14 -0
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +38 -8
- data/fastlane_core/lib/fastlane_core/project.rb +4 -0
- data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +7 -1
- data/frameit/lib/frameit/device.rb +2 -2
- data/frameit/lib/frameit/device_types.rb +108 -70
- data/frameit/lib/frameit/template_finder.rb +1 -1
- data/gym/lib/gym/module.rb +9 -4
- data/gym/lib/gym/options.rb +14 -1
- data/gym/lib/gym/runner.rb +38 -3
- data/produce/lib/produce/developer_center.rb +1 -0
- data/produce/lib/produce/service.rb +6 -1
- data/scan/lib/scan/options.rb +5 -0
- data/scan/lib/scan/test_command_generator.rb +8 -0
- data/sigh/lib/sigh/local_manage.rb +6 -4
- data/sigh/lib/sigh/runner.rb +18 -1
- data/snapshot/lib/snapshot/options.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +62 -8
- data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +4 -4
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +7 -1
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +16 -16
- data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +2 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +0 -6
- data/spaceship/lib/spaceship/errors.rb +8 -6
- data/supply/lib/supply/client.rb +18 -1
- metadata +75 -29
- data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +0 -14
- data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +0 -43
- data/fastlane/lib/fastlane/plugins/template/.travis.yml +0 -4
|
@@ -1339,10 +1339,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1339
1339
|
- skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
|
|
1340
1340
|
- xcodebuildCommand: Allows for override of the default `xcodebuild` command
|
|
1341
1341
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
1342
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
1342
1343
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
1343
1344
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
1344
1345
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
1345
1346
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
1347
|
+
- generateAppstoreInfo: Generate AppStoreInfo.plist using swinfo for app-store exports
|
|
1346
1348
|
|
|
1347
1349
|
- returns: The absolute path to the generated ipa file
|
|
1348
1350
|
|
|
@@ -1395,10 +1397,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1395
1397
|
skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1396
1398
|
xcodebuildCommand: String = "xcodebuild",
|
|
1397
1399
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1400
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1398
1401
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1399
1402
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1400
1403
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1401
|
-
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
1404
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1405
|
+
generateAppstoreInfo: OptionalConfigValue<Bool> = .fastlaneDefault(false)) -> String
|
|
1402
1406
|
{
|
|
1403
1407
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
|
1404
1408
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
|
@@ -1447,10 +1451,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1447
1451
|
let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
|
|
1448
1452
|
let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
|
|
1449
1453
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
1454
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
1450
1455
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
1451
1456
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
1452
1457
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
1453
1458
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
1459
|
+
let generateAppstoreInfoArg = generateAppstoreInfo.asRubyArgument(name: "generate_appstore_info", type: nil)
|
|
1454
1460
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
|
1455
1461
|
projectArg,
|
|
1456
1462
|
schemeArg,
|
|
@@ -1498,10 +1504,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1498
1504
|
skipProfileDetectionArg,
|
|
1499
1505
|
xcodebuildCommandArg,
|
|
1500
1506
|
clonedSourcePackagesPathArg,
|
|
1507
|
+
packageCachePathArg,
|
|
1501
1508
|
skipPackageDependenciesResolutionArg,
|
|
1502
1509
|
disablePackageAutomaticUpdatesArg,
|
|
1503
1510
|
useSystemScmArg,
|
|
1504
|
-
packageAuthorizationProviderArg
|
|
1511
|
+
packageAuthorizationProviderArg,
|
|
1512
|
+
generateAppstoreInfoArg]
|
|
1505
1513
|
let args: [RubyCommand.Argument] = array
|
|
1506
1514
|
.filter { $0?.value != nil }
|
|
1507
1515
|
.compactMap { $0 }
|
|
@@ -1557,10 +1565,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1557
1565
|
- skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
|
|
1558
1566
|
- xcodebuildCommand: Allows for override of the default `xcodebuild` command
|
|
1559
1567
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
1568
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
1560
1569
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
1561
1570
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
1562
1571
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
1563
1572
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
1573
|
+
- generateAppstoreInfo: Generate AppStoreInfo.plist using swinfo for app-store exports
|
|
1564
1574
|
|
|
1565
1575
|
- returns: The absolute path to the generated ipa file
|
|
1566
1576
|
|
|
@@ -1610,10 +1620,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1610
1620
|
skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1611
1621
|
xcodebuildCommand: String = "xcodebuild",
|
|
1612
1622
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1623
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1613
1624
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1614
1625
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1615
1626
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1616
|
-
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
1627
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1628
|
+
generateAppstoreInfo: OptionalConfigValue<Bool> = .fastlaneDefault(false)) -> String
|
|
1617
1629
|
{
|
|
1618
1630
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
|
1619
1631
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
|
@@ -1659,10 +1671,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1659
1671
|
let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
|
|
1660
1672
|
let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
|
|
1661
1673
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
1674
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
1662
1675
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
1663
1676
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
1664
1677
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
1665
1678
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
1679
|
+
let generateAppstoreInfoArg = generateAppstoreInfo.asRubyArgument(name: "generate_appstore_info", type: nil)
|
|
1666
1680
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
|
1667
1681
|
projectArg,
|
|
1668
1682
|
schemeArg,
|
|
@@ -1707,10 +1721,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1707
1721
|
skipProfileDetectionArg,
|
|
1708
1722
|
xcodebuildCommandArg,
|
|
1709
1723
|
clonedSourcePackagesPathArg,
|
|
1724
|
+
packageCachePathArg,
|
|
1710
1725
|
skipPackageDependenciesResolutionArg,
|
|
1711
1726
|
disablePackageAutomaticUpdatesArg,
|
|
1712
1727
|
useSystemScmArg,
|
|
1713
|
-
packageAuthorizationProviderArg
|
|
1728
|
+
packageAuthorizationProviderArg,
|
|
1729
|
+
generateAppstoreInfoArg]
|
|
1714
1730
|
let args: [RubyCommand.Argument] = array
|
|
1715
1731
|
.filter { $0?.value != nil }
|
|
1716
1732
|
.compactMap { $0 }
|
|
@@ -1767,10 +1783,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1767
1783
|
- skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
|
|
1768
1784
|
- xcodebuildCommand: Allows for override of the default `xcodebuild` command
|
|
1769
1785
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
1786
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
1770
1787
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
1771
1788
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
1772
1789
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
1773
1790
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
1791
|
+
- generateAppstoreInfo: Generate AppStoreInfo.plist using swinfo for app-store exports
|
|
1774
1792
|
|
|
1775
1793
|
- returns: The absolute path to the generated ipa file
|
|
1776
1794
|
|
|
@@ -1821,10 +1839,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1821
1839
|
skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1822
1840
|
xcodebuildCommand: String = "xcodebuild",
|
|
1823
1841
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1842
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1824
1843
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1825
1844
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1826
1845
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
1827
|
-
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
1846
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
1847
|
+
generateAppstoreInfo: OptionalConfigValue<Bool> = .fastlaneDefault(false)) -> String
|
|
1828
1848
|
{
|
|
1829
1849
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
|
1830
1850
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
|
@@ -1871,10 +1891,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1871
1891
|
let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
|
|
1872
1892
|
let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
|
|
1873
1893
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
1894
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
1874
1895
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
1875
1896
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
1876
1897
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
1877
1898
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
1899
|
+
let generateAppstoreInfoArg = generateAppstoreInfo.asRubyArgument(name: "generate_appstore_info", type: nil)
|
|
1878
1900
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
|
1879
1901
|
projectArg,
|
|
1880
1902
|
schemeArg,
|
|
@@ -1920,10 +1942,12 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
|
1920
1942
|
skipProfileDetectionArg,
|
|
1921
1943
|
xcodebuildCommandArg,
|
|
1922
1944
|
clonedSourcePackagesPathArg,
|
|
1945
|
+
packageCachePathArg,
|
|
1923
1946
|
skipPackageDependenciesResolutionArg,
|
|
1924
1947
|
disablePackageAutomaticUpdatesArg,
|
|
1925
1948
|
useSystemScmArg,
|
|
1926
|
-
packageAuthorizationProviderArg
|
|
1949
|
+
packageAuthorizationProviderArg,
|
|
1950
|
+
generateAppstoreInfoArg]
|
|
1927
1951
|
let args: [RubyCommand.Argument] = array
|
|
1928
1952
|
.filter { $0?.value != nil }
|
|
1929
1953
|
.compactMap { $0 }
|
|
@@ -2168,6 +2192,7 @@ public func captureAndroidScreenshots(androidHome: OptionalConfigValue<String?>
|
|
|
2168
2192
|
- concurrentSimulators: Take snapshots on multiple simulators concurrently. Note: This option is only applicable when running against Xcode 9
|
|
2169
2193
|
- disableSlideToType: Disable the simulator from showing the 'Slide to type' prompt
|
|
2170
2194
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
2195
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
2171
2196
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
2172
2197
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
2173
2198
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
@@ -2219,6 +2244,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
|
2219
2244
|
concurrentSimulators: OptionalConfigValue<Bool> = .fastlaneDefault(true),
|
|
2220
2245
|
disableSlideToType: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
2221
2246
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
2247
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
2222
2248
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
2223
2249
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
2224
2250
|
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
@@ -2270,6 +2296,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
|
2270
2296
|
let concurrentSimulatorsArg = concurrentSimulators.asRubyArgument(name: "concurrent_simulators", type: nil)
|
|
2271
2297
|
let disableSlideToTypeArg = disableSlideToType.asRubyArgument(name: "disable_slide_to_type", type: nil)
|
|
2272
2298
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
2299
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
2273
2300
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
2274
2301
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
2275
2302
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
@@ -2320,6 +2347,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
|
2320
2347
|
concurrentSimulatorsArg,
|
|
2321
2348
|
disableSlideToTypeArg,
|
|
2322
2349
|
clonedSourcePackagesPathArg,
|
|
2350
|
+
packageCachePathArg,
|
|
2323
2351
|
skipPackageDependenciesResolutionArg,
|
|
2324
2352
|
disablePackageAutomaticUpdatesArg,
|
|
2325
2353
|
packageAuthorizationProviderArg,
|
|
@@ -2381,6 +2409,7 @@ public func captureIosScreenshots(workspace: OptionalConfigValue<String?> = .fas
|
|
|
2381
2409
|
- concurrentSimulators: Take snapshots on multiple simulators concurrently. Note: This option is only applicable when running against Xcode 9
|
|
2382
2410
|
- disableSlideToType: Disable the simulator from showing the 'Slide to type' prompt
|
|
2383
2411
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
2412
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
2384
2413
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
2385
2414
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
2386
2415
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
@@ -2432,6 +2461,7 @@ public func captureScreenshots(workspace: OptionalConfigValue<String?> = .fastla
|
|
|
2432
2461
|
concurrentSimulators: OptionalConfigValue<Bool> = .fastlaneDefault(true),
|
|
2433
2462
|
disableSlideToType: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
2434
2463
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
2464
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
2435
2465
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
2436
2466
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
2437
2467
|
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
@@ -2483,6 +2513,7 @@ public func captureScreenshots(workspace: OptionalConfigValue<String?> = .fastla
|
|
|
2483
2513
|
let concurrentSimulatorsArg = concurrentSimulators.asRubyArgument(name: "concurrent_simulators", type: nil)
|
|
2484
2514
|
let disableSlideToTypeArg = disableSlideToType.asRubyArgument(name: "disable_slide_to_type", type: nil)
|
|
2485
2515
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
2516
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
2486
2517
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
2487
2518
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
2488
2519
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
@@ -2533,6 +2564,7 @@ public func captureScreenshots(workspace: OptionalConfigValue<String?> = .fastla
|
|
|
2533
2564
|
concurrentSimulatorsArg,
|
|
2534
2565
|
disableSlideToTypeArg,
|
|
2535
2566
|
clonedSourcePackagesPathArg,
|
|
2567
|
+
packageCachePathArg,
|
|
2536
2568
|
skipPackageDependenciesResolutionArg,
|
|
2537
2569
|
disablePackageAutomaticUpdatesArg,
|
|
2538
2570
|
packageAuthorizationProviderArg,
|
|
@@ -3320,7 +3352,7 @@ public func createAppOnManagedPlayStore(jsonKey: OptionalConfigValue<String?> =
|
|
|
3320
3352
|
- skipItc: Skip the creation of the app on App Store Connect
|
|
3321
3353
|
- itcUsers: Array of App Store Connect users. If provided, you can limit access to this newly created app for users with the App Manager, Developer, Marketer or Sales roles
|
|
3322
3354
|
- enabledFeatures: **DEPRECATED!** Please use `enable_services` instead - Array with Spaceship App Services
|
|
3323
|
-
- enableServices: Array with Spaceship App Services (e.g. access_wifi: (on|off), app_attest: (on|off), app_group: (on|off), apple_pay: (on|off), associated_domains: (on|off), auto_fill_credential: (on|off), class_kit: (on|off), icloud: (legacy|cloudkit), custom_network_protocol: (on|off), data_protection: (complete|unlessopen|untilfirstauth), extended_virtual_address_space: (on|off), family_controls: (on|off), file_provider_testing_mode: (on|off), fonts: (on|off), game_center: (ios|mac), health_kit: (on|off), hls_interstitial_preview: (on|off), home_kit: (on|off), hotspot: (on|off), in_app_purchase: (on|off), inter_app_audio: (on|off), low_latency_hls: (on|off), managed_associated_domains: (on|off), maps: (on|off), multipath: (on|off), network_extension: (on|off), nfc_tag_reading: (on|off), personal_vpn: (on|off), passbook: (on|off), push_notification: (on|off), sign_in_with_apple: (on), siri_kit: (on|off), system_extension: (on|off), user_management: (on|off), vpn_configuration: (on|off), wallet: (on|off), wireless_accessory: (on|off), car_play_audio_app: (on|off), car_play_messaging_app: (on|off), car_play_navigation_app: (on|off), car_play_voip_calling_app: (on|off), critical_alerts: (on|off), hotspot_helper: (on|off), driver_kit: (on|off), driver_kit_endpoint_security: (on|off), driver_kit_family_hid_device: (on|off), driver_kit_family_networking: (on|off), driver_kit_family_serial: (on|off), driver_kit_hid_event_service: (on|off), driver_kit_transport_hid: (on|off), multitasking_camera_access: (on|off), sf_universal_link_api: (on|off), vp9_decoder: (on|off), music_kit: (on|off), shazam_kit: (on|off), communication_notifications: (on|off), group_activities: (on|off), health_kit_estimate_recalibration: (on|off), time_sensitive_notifications: (on|off))
|
|
3355
|
+
- enableServices: Array with Spaceship App Services (e.g. access_wifi: (on|off), app_attest: (on|off), app_group: (on|off), apple_pay: (on|off), associated_domains: (on|off), auto_fill_credential: (on|off), class_kit: (on|off), declared_age_range: (on|off), icloud: (legacy|cloudkit), custom_network_protocol: (on|off), data_protection: (complete|unlessopen|untilfirstauth), extended_virtual_address_space: (on|off), family_controls: (on|off), file_provider_testing_mode: (on|off), fonts: (on|off), game_center: (ios|mac), health_kit: (on|off), hls_interstitial_preview: (on|off), home_kit: (on|off), hotspot: (on|off), in_app_purchase: (on|off), inter_app_audio: (on|off), low_latency_hls: (on|off), managed_associated_domains: (on|off), maps: (on|off), multipath: (on|off), network_extension: (on|off), nfc_tag_reading: (on|off), personal_vpn: (on|off), passbook: (on|off), push_notification: (on|off), sign_in_with_apple: (on), siri_kit: (on|off), system_extension: (on|off), user_management: (on|off), vpn_configuration: (on|off), wallet: (on|off), wireless_accessory: (on|off), car_play_audio_app: (on|off), car_play_messaging_app: (on|off), car_play_navigation_app: (on|off), car_play_voip_calling_app: (on|off), critical_alerts: (on|off), hotspot_helper: (on|off), driver_kit: (on|off), driver_kit_endpoint_security: (on|off), driver_kit_family_hid_device: (on|off), driver_kit_family_networking: (on|off), driver_kit_family_serial: (on|off), driver_kit_hid_event_service: (on|off), driver_kit_transport_hid: (on|off), multitasking_camera_access: (on|off), sf_universal_link_api: (on|off), vp9_decoder: (on|off), music_kit: (on|off), shazam_kit: (on|off), communication_notifications: (on|off), group_activities: (on|off), health_kit_estimate_recalibration: (on|off), time_sensitive_notifications: (on|off))
|
|
3324
3356
|
- skipDevcenter: Skip the creation of the app on the Apple Developer Portal
|
|
3325
3357
|
- teamId: The ID of your Developer Portal team if you're in multiple teams
|
|
3326
3358
|
- teamName: The name of your Developer Portal team if you're in multiple teams
|
|
@@ -5713,10 +5745,12 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
|
5713
5745
|
- skipProfileDetection: Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
|
|
5714
5746
|
- xcodebuildCommand: Allows for override of the default `xcodebuild` command
|
|
5715
5747
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
5748
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
5716
5749
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
5717
5750
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
5718
5751
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
5719
5752
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
5753
|
+
- generateAppstoreInfo: Generate AppStoreInfo.plist using swinfo for app-store exports
|
|
5720
5754
|
|
|
5721
5755
|
- returns: The absolute path to the generated ipa file
|
|
5722
5756
|
|
|
@@ -5769,10 +5803,12 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
|
5769
5803
|
skipProfileDetection: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipProfileDetection),
|
|
5770
5804
|
xcodebuildCommand: String = gymfile.xcodebuildCommand,
|
|
5771
5805
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.clonedSourcePackagesPath),
|
|
5806
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.packageCachePath),
|
|
5772
5807
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.skipPackageDependenciesResolution),
|
|
5773
5808
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.disablePackageAutomaticUpdates),
|
|
5774
5809
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.useSystemScm),
|
|
5775
|
-
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.packageAuthorizationProvider)
|
|
5810
|
+
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.packageAuthorizationProvider),
|
|
5811
|
+
generateAppstoreInfo: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.generateAppstoreInfo)) -> String
|
|
5776
5812
|
{
|
|
5777
5813
|
let workspaceArg = workspace.asRubyArgument(name: "workspace", type: nil)
|
|
5778
5814
|
let projectArg = project.asRubyArgument(name: "project", type: nil)
|
|
@@ -5821,10 +5857,12 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
|
5821
5857
|
let skipProfileDetectionArg = skipProfileDetection.asRubyArgument(name: "skip_profile_detection", type: nil)
|
|
5822
5858
|
let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
|
|
5823
5859
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
5860
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
5824
5861
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
5825
5862
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
5826
5863
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
5827
5864
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
5865
|
+
let generateAppstoreInfoArg = generateAppstoreInfo.asRubyArgument(name: "generate_appstore_info", type: nil)
|
|
5828
5866
|
let array: [RubyCommand.Argument?] = [workspaceArg,
|
|
5829
5867
|
projectArg,
|
|
5830
5868
|
schemeArg,
|
|
@@ -5872,10 +5910,12 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
|
5872
5910
|
skipProfileDetectionArg,
|
|
5873
5911
|
xcodebuildCommandArg,
|
|
5874
5912
|
clonedSourcePackagesPathArg,
|
|
5913
|
+
packageCachePathArg,
|
|
5875
5914
|
skipPackageDependenciesResolutionArg,
|
|
5876
5915
|
disablePackageAutomaticUpdatesArg,
|
|
5877
5916
|
useSystemScmArg,
|
|
5878
|
-
packageAuthorizationProviderArg
|
|
5917
|
+
packageAuthorizationProviderArg,
|
|
5918
|
+
generateAppstoreInfoArg]
|
|
5879
5919
|
let args: [RubyCommand.Argument] = array
|
|
5880
5920
|
.filter { $0?.value != nil }
|
|
5881
5921
|
.compactMap { $0 }
|
|
@@ -7206,7 +7246,7 @@ public func minFastlaneVersion() {
|
|
|
7206
7246
|
- parameters:
|
|
7207
7247
|
- username: Your Apple ID Username
|
|
7208
7248
|
- appIdentifier: App Identifier (Bundle ID, e.g. com.krausefx.app)
|
|
7209
|
-
- services: Array with Spaceship App Services (e.g. access_wifi: (on|off)(:on|:off)(true|false), app_attest: (on|off)(:on|:off)(true|false), app_group: (on|off)(:on|:off)(true|false), apple_pay: (on|off)(:on|:off)(true|false), associated_domains: (on|off)(:on|:off)(true|false), auto_fill_credential: (on|off)(:on|:off)(true|false), class_kit: (on|off)(:on|:off)(true|false), icloud: (legacy|cloudkit)(:on|:off)(true|false), custom_network_protocol: (on|off)(:on|:off)(true|false), data_protection: (complete|unlessopen|untilfirstauth)(:on|:off)(true|false), extended_virtual_address_space: (on|off)(:on|:off)(true|false), family_controls: (on|off)(:on|:off)(true|false), file_provider_testing_mode: (on|off)(:on|:off)(true|false), fonts: (on|off)(:on|:off)(true|false), game_center: (ios|mac)(:on|:off)(true|false), health_kit: (on|off)(:on|:off)(true|false), hls_interstitial_preview: (on|off)(:on|:off)(true|false), home_kit: (on|off)(:on|:off)(true|false), hotspot: (on|off)(:on|:off)(true|false), in_app_purchase: (on|off)(:on|:off)(true|false), inter_app_audio: (on|off)(:on|:off)(true|false), low_latency_hls: (on|off)(:on|:off)(true|false), managed_associated_domains: (on|off)(:on|:off)(true|false), maps: (on|off)(:on|:off)(true|false), multipath: (on|off)(:on|:off)(true|false), network_extension: (on|off)(:on|:off)(true|false), nfc_tag_reading: (on|off)(:on|:off)(true|false), personal_vpn: (on|off)(:on|:off)(true|false), passbook: (on|off)(:on|:off)(true|false), push_notification: (on|off)(:on|:off)(true|false), sign_in_with_apple: (on)(:on|:off)(true|false), siri_kit: (on|off)(:on|:off)(true|false), system_extension: (on|off)(:on|:off)(true|false), user_management: (on|off)(:on|:off)(true|false), vpn_configuration: (on|off)(:on|:off)(true|false), wallet: (on|off)(:on|:off)(true|false), wireless_accessory: (on|off)(:on|:off)(true|false), car_play_audio_app: (on|off)(:on|:off)(true|false), car_play_messaging_app: (on|off)(:on|:off)(true|false), car_play_navigation_app: (on|off)(:on|:off)(true|false), car_play_voip_calling_app: (on|off)(:on|:off)(true|false), critical_alerts: (on|off)(:on|:off)(true|false), hotspot_helper: (on|off)(:on|:off)(true|false), driver_kit: (on|off)(:on|:off)(true|false), driver_kit_endpoint_security: (on|off)(:on|:off)(true|false), driver_kit_family_hid_device: (on|off)(:on|:off)(true|false), driver_kit_family_networking: (on|off)(:on|:off)(true|false), driver_kit_family_serial: (on|off)(:on|:off)(true|false), driver_kit_hid_event_service: (on|off)(:on|:off)(true|false), driver_kit_transport_hid: (on|off)(:on|:off)(true|false), multitasking_camera_access: (on|off)(:on|:off)(true|false), sf_universal_link_api: (on|off)(:on|:off)(true|false), vp9_decoder: (on|off)(:on|:off)(true|false), music_kit: (on|off)(:on|:off)(true|false), shazam_kit: (on|off)(:on|:off)(true|false), communication_notifications: (on|off)(:on|:off)(true|false), group_activities: (on|off)(:on|:off)(true|false), health_kit_estimate_recalibration: (on|off)(:on|:off)(true|false), time_sensitive_notifications: (on|off)(:on|:off)(true|false))
|
|
7249
|
+
- services: Array with Spaceship App Services (e.g. access_wifi: (on|off)(:on|:off)(true|false), app_attest: (on|off)(:on|:off)(true|false), app_group: (on|off)(:on|:off)(true|false), apple_pay: (on|off)(:on|:off)(true|false), associated_domains: (on|off)(:on|:off)(true|false), auto_fill_credential: (on|off)(:on|:off)(true|false), class_kit: (on|off)(:on|:off)(true|false), declared_age_range: (on|off)(:on|:off)(true|false), icloud: (legacy|cloudkit)(:on|:off)(true|false), custom_network_protocol: (on|off)(:on|:off)(true|false), data_protection: (complete|unlessopen|untilfirstauth)(:on|:off)(true|false), extended_virtual_address_space: (on|off)(:on|:off)(true|false), family_controls: (on|off)(:on|:off)(true|false), file_provider_testing_mode: (on|off)(:on|:off)(true|false), fonts: (on|off)(:on|:off)(true|false), game_center: (ios|mac)(:on|:off)(true|false), health_kit: (on|off)(:on|:off)(true|false), hls_interstitial_preview: (on|off)(:on|:off)(true|false), home_kit: (on|off)(:on|:off)(true|false), hotspot: (on|off)(:on|:off)(true|false), in_app_purchase: (on|off)(:on|:off)(true|false), inter_app_audio: (on|off)(:on|:off)(true|false), low_latency_hls: (on|off)(:on|:off)(true|false), managed_associated_domains: (on|off)(:on|:off)(true|false), maps: (on|off)(:on|:off)(true|false), multipath: (on|off)(:on|:off)(true|false), network_extension: (on|off)(:on|:off)(true|false), nfc_tag_reading: (on|off)(:on|:off)(true|false), personal_vpn: (on|off)(:on|:off)(true|false), passbook: (on|off)(:on|:off)(true|false), push_notification: (on|off)(:on|:off)(true|false), sign_in_with_apple: (on)(:on|:off)(true|false), siri_kit: (on|off)(:on|:off)(true|false), system_extension: (on|off)(:on|:off)(true|false), user_management: (on|off)(:on|:off)(true|false), vpn_configuration: (on|off)(:on|:off)(true|false), wallet: (on|off)(:on|:off)(true|false), wireless_accessory: (on|off)(:on|:off)(true|false), car_play_audio_app: (on|off)(:on|:off)(true|false), car_play_messaging_app: (on|off)(:on|:off)(true|false), car_play_navigation_app: (on|off)(:on|:off)(true|false), car_play_voip_calling_app: (on|off)(:on|:off)(true|false), critical_alerts: (on|off)(:on|:off)(true|false), hotspot_helper: (on|off)(:on|:off)(true|false), driver_kit: (on|off)(:on|:off)(true|false), driver_kit_endpoint_security: (on|off)(:on|:off)(true|false), driver_kit_family_hid_device: (on|off)(:on|:off)(true|false), driver_kit_family_networking: (on|off)(:on|:off)(true|false), driver_kit_family_serial: (on|off)(:on|:off)(true|false), driver_kit_hid_event_service: (on|off)(:on|:off)(true|false), driver_kit_transport_hid: (on|off)(:on|:off)(true|false), multitasking_camera_access: (on|off)(:on|:off)(true|false), sf_universal_link_api: (on|off)(:on|:off)(true|false), vp9_decoder: (on|off)(:on|:off)(true|false), music_kit: (on|off)(:on|:off)(true|false), shazam_kit: (on|off)(:on|:off)(true|false), communication_notifications: (on|off)(:on|:off)(true|false), group_activities: (on|off)(:on|:off)(true|false), health_kit_estimate_recalibration: (on|off)(:on|:off)(true|false), time_sensitive_notifications: (on|off)(:on|:off)(true|false))
|
|
7210
7250
|
- teamId: The ID of your Developer Portal team if you're in multiple teams
|
|
7211
7251
|
- teamName: The name of your Developer Portal team if you're in multiple teams
|
|
7212
7252
|
|
|
@@ -8208,7 +8248,7 @@ public func println(message: OptionalConfigValue<String?> = .fastlaneDefault(nil
|
|
|
8208
8248
|
- skipItc: Skip the creation of the app on App Store Connect
|
|
8209
8249
|
- itcUsers: Array of App Store Connect users. If provided, you can limit access to this newly created app for users with the App Manager, Developer, Marketer or Sales roles
|
|
8210
8250
|
- enabledFeatures: **DEPRECATED!** Please use `enable_services` instead - Array with Spaceship App Services
|
|
8211
|
-
- enableServices: Array with Spaceship App Services (e.g. access_wifi: (on|off), app_attest: (on|off), app_group: (on|off), apple_pay: (on|off), associated_domains: (on|off), auto_fill_credential: (on|off), class_kit: (on|off), icloud: (legacy|cloudkit), custom_network_protocol: (on|off), data_protection: (complete|unlessopen|untilfirstauth), extended_virtual_address_space: (on|off), family_controls: (on|off), file_provider_testing_mode: (on|off), fonts: (on|off), game_center: (ios|mac), health_kit: (on|off), hls_interstitial_preview: (on|off), home_kit: (on|off), hotspot: (on|off), in_app_purchase: (on|off), inter_app_audio: (on|off), low_latency_hls: (on|off), managed_associated_domains: (on|off), maps: (on|off), multipath: (on|off), network_extension: (on|off), nfc_tag_reading: (on|off), personal_vpn: (on|off), passbook: (on|off), push_notification: (on|off), sign_in_with_apple: (on), siri_kit: (on|off), system_extension: (on|off), user_management: (on|off), vpn_configuration: (on|off), wallet: (on|off), wireless_accessory: (on|off), car_play_audio_app: (on|off), car_play_messaging_app: (on|off), car_play_navigation_app: (on|off), car_play_voip_calling_app: (on|off), critical_alerts: (on|off), hotspot_helper: (on|off), driver_kit: (on|off), driver_kit_endpoint_security: (on|off), driver_kit_family_hid_device: (on|off), driver_kit_family_networking: (on|off), driver_kit_family_serial: (on|off), driver_kit_hid_event_service: (on|off), driver_kit_transport_hid: (on|off), multitasking_camera_access: (on|off), sf_universal_link_api: (on|off), vp9_decoder: (on|off), music_kit: (on|off), shazam_kit: (on|off), communication_notifications: (on|off), group_activities: (on|off), health_kit_estimate_recalibration: (on|off), time_sensitive_notifications: (on|off))
|
|
8251
|
+
- enableServices: Array with Spaceship App Services (e.g. access_wifi: (on|off), app_attest: (on|off), app_group: (on|off), apple_pay: (on|off), associated_domains: (on|off), auto_fill_credential: (on|off), class_kit: (on|off), declared_age_range: (on|off), icloud: (legacy|cloudkit), custom_network_protocol: (on|off), data_protection: (complete|unlessopen|untilfirstauth), extended_virtual_address_space: (on|off), family_controls: (on|off), file_provider_testing_mode: (on|off), fonts: (on|off), game_center: (ios|mac), health_kit: (on|off), hls_interstitial_preview: (on|off), home_kit: (on|off), hotspot: (on|off), in_app_purchase: (on|off), inter_app_audio: (on|off), low_latency_hls: (on|off), managed_associated_domains: (on|off), maps: (on|off), multipath: (on|off), network_extension: (on|off), nfc_tag_reading: (on|off), personal_vpn: (on|off), passbook: (on|off), push_notification: (on|off), sign_in_with_apple: (on), siri_kit: (on|off), system_extension: (on|off), user_management: (on|off), vpn_configuration: (on|off), wallet: (on|off), wireless_accessory: (on|off), car_play_audio_app: (on|off), car_play_messaging_app: (on|off), car_play_navigation_app: (on|off), car_play_voip_calling_app: (on|off), critical_alerts: (on|off), hotspot_helper: (on|off), driver_kit: (on|off), driver_kit_endpoint_security: (on|off), driver_kit_family_hid_device: (on|off), driver_kit_family_networking: (on|off), driver_kit_family_serial: (on|off), driver_kit_hid_event_service: (on|off), driver_kit_transport_hid: (on|off), multitasking_camera_access: (on|off), sf_universal_link_api: (on|off), vp9_decoder: (on|off), music_kit: (on|off), shazam_kit: (on|off), communication_notifications: (on|off), group_activities: (on|off), health_kit_estimate_recalibration: (on|off), time_sensitive_notifications: (on|off))
|
|
8212
8252
|
- skipDevcenter: Skip the creation of the app on the Apple Developer Portal
|
|
8213
8253
|
- teamId: The ID of your Developer Portal team if you're in multiple teams
|
|
8214
8254
|
- teamName: The name of your Developer Portal team if you're in multiple teams
|
|
@@ -8826,6 +8866,7 @@ public func rubyVersion() {
|
|
|
8826
8866
|
- customReportFileName: **DEPRECATED!** Use `--output_files` instead - Sets custom full report file name when generating a single report
|
|
8827
8867
|
- xcodebuildCommand: Allows for override of the default `xcodebuild` command
|
|
8828
8868
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
8869
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
8829
8870
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
8830
8871
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
8831
8872
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
@@ -8910,6 +8951,7 @@ public func rubyVersion() {
|
|
|
8910
8951
|
customReportFileName: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
8911
8952
|
xcodebuildCommand: String = "env NSUnbufferedIO=YES xcodebuild",
|
|
8912
8953
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
8954
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
8913
8955
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
8914
8956
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
8915
8957
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
@@ -8990,6 +9032,7 @@ public func rubyVersion() {
|
|
|
8990
9032
|
let customReportFileNameArg = customReportFileName.asRubyArgument(name: "custom_report_file_name", type: nil)
|
|
8991
9033
|
let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
|
|
8992
9034
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
9035
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
8993
9036
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
8994
9037
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
8995
9038
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
@@ -9069,6 +9112,7 @@ public func rubyVersion() {
|
|
|
9069
9112
|
customReportFileNameArg,
|
|
9070
9113
|
xcodebuildCommandArg,
|
|
9071
9114
|
clonedSourcePackagesPathArg,
|
|
9115
|
+
packageCachePathArg,
|
|
9072
9116
|
skipPackageDependenciesResolutionArg,
|
|
9073
9117
|
disablePackageAutomaticUpdatesArg,
|
|
9074
9118
|
useSystemScmArg,
|
|
@@ -9261,6 +9305,7 @@ public func say(text: [String],
|
|
|
9261
9305
|
- customReportFileName: **DEPRECATED!** Use `--output_files` instead - Sets custom full report file name when generating a single report
|
|
9262
9306
|
- xcodebuildCommand: Allows for override of the default `xcodebuild` command
|
|
9263
9307
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
9308
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
9264
9309
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
9265
9310
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
9266
9311
|
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
@@ -9345,6 +9390,7 @@ public func say(text: [String],
|
|
|
9345
9390
|
customReportFileName: OptionalConfigValue<String?> = .fastlaneDefault(scanfile.customReportFileName),
|
|
9346
9391
|
xcodebuildCommand: String = scanfile.xcodebuildCommand,
|
|
9347
9392
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(scanfile.clonedSourcePackagesPath),
|
|
9393
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(scanfile.packageCachePath),
|
|
9348
9394
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.skipPackageDependenciesResolution),
|
|
9349
9395
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.disablePackageAutomaticUpdates),
|
|
9350
9396
|
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.useSystemScm),
|
|
@@ -9425,6 +9471,7 @@ public func say(text: [String],
|
|
|
9425
9471
|
let customReportFileNameArg = customReportFileName.asRubyArgument(name: "custom_report_file_name", type: nil)
|
|
9426
9472
|
let xcodebuildCommandArg = RubyCommand.Argument(name: "xcodebuild_command", value: xcodebuildCommand, type: nil)
|
|
9427
9473
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
9474
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
9428
9475
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
9429
9476
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
9430
9477
|
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
@@ -9504,6 +9551,7 @@ public func say(text: [String],
|
|
|
9504
9551
|
customReportFileNameArg,
|
|
9505
9552
|
xcodebuildCommandArg,
|
|
9506
9553
|
clonedSourcePackagesPathArg,
|
|
9554
|
+
packageCachePathArg,
|
|
9507
9555
|
skipPackageDependenciesResolutionArg,
|
|
9508
9556
|
disablePackageAutomaticUpdatesArg,
|
|
9509
9557
|
useSystemScmArg,
|
|
@@ -10495,6 +10543,7 @@ public func slather(buildDirectory: OptionalConfigValue<String?> = .fastlaneDefa
|
|
|
10495
10543
|
- concurrentSimulators: Take snapshots on multiple simulators concurrently. Note: This option is only applicable when running against Xcode 9
|
|
10496
10544
|
- disableSlideToType: Disable the simulator from showing the 'Slide to type' prompt
|
|
10497
10545
|
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
10546
|
+
- packageCachePath: Sets a custom package cache path for Swift Package Manager dependencies
|
|
10498
10547
|
- skipPackageDependenciesResolution: Skips resolution of Swift Package Manager dependencies
|
|
10499
10548
|
- disablePackageAutomaticUpdates: Prevents packages from automatically being resolved to versions other than those recorded in the `Package.resolved` file
|
|
10500
10549
|
- packageAuthorizationProvider: Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
@@ -10546,6 +10595,7 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
|
|
|
10546
10595
|
concurrentSimulators: OptionalConfigValue<Bool> = .fastlaneDefault(snapshotfile.concurrentSimulators),
|
|
10547
10596
|
disableSlideToType: OptionalConfigValue<Bool> = .fastlaneDefault(snapshotfile.disableSlideToType),
|
|
10548
10597
|
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(snapshotfile.clonedSourcePackagesPath),
|
|
10598
|
+
packageCachePath: OptionalConfigValue<String?> = .fastlaneDefault(snapshotfile.packageCachePath),
|
|
10549
10599
|
skipPackageDependenciesResolution: OptionalConfigValue<Bool> = .fastlaneDefault(snapshotfile.skipPackageDependenciesResolution),
|
|
10550
10600
|
disablePackageAutomaticUpdates: OptionalConfigValue<Bool> = .fastlaneDefault(snapshotfile.disablePackageAutomaticUpdates),
|
|
10551
10601
|
packageAuthorizationProvider: OptionalConfigValue<String?> = .fastlaneDefault(snapshotfile.packageAuthorizationProvider),
|
|
@@ -10597,6 +10647,7 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
|
|
|
10597
10647
|
let concurrentSimulatorsArg = concurrentSimulators.asRubyArgument(name: "concurrent_simulators", type: nil)
|
|
10598
10648
|
let disableSlideToTypeArg = disableSlideToType.asRubyArgument(name: "disable_slide_to_type", type: nil)
|
|
10599
10649
|
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
10650
|
+
let packageCachePathArg = packageCachePath.asRubyArgument(name: "package_cache_path", type: nil)
|
|
10600
10651
|
let skipPackageDependenciesResolutionArg = skipPackageDependenciesResolution.asRubyArgument(name: "skip_package_dependencies_resolution", type: nil)
|
|
10601
10652
|
let disablePackageAutomaticUpdatesArg = disablePackageAutomaticUpdates.asRubyArgument(name: "disable_package_automatic_updates", type: nil)
|
|
10602
10653
|
let packageAuthorizationProviderArg = packageAuthorizationProvider.asRubyArgument(name: "package_authorization_provider", type: nil)
|
|
@@ -10647,6 +10698,7 @@ public func snapshot(workspace: OptionalConfigValue<String?> = .fastlaneDefault(
|
|
|
10647
10698
|
concurrentSimulatorsArg,
|
|
10648
10699
|
disableSlideToTypeArg,
|
|
10649
10700
|
clonedSourcePackagesPathArg,
|
|
10701
|
+
packageCachePathArg,
|
|
10650
10702
|
skipPackageDependenciesResolutionArg,
|
|
10651
10703
|
disablePackageAutomaticUpdatesArg,
|
|
10652
10704
|
packageAuthorizationProviderArg,
|
|
@@ -13573,7 +13625,11 @@ public func xcodebuild() {
|
|
|
13573
13625
|
- configuration: The configuration used when building the app. Defaults to 'Release'
|
|
13574
13626
|
- sourceDirectory: The path to project's root directory
|
|
13575
13627
|
- derivedDataPath: The directory where build products and other derived data will go
|
|
13628
|
+
- xccovFileDirectPath: The path or array of paths to the xccoverage/xccovreport/xcresult files to parse to generate code coverage
|
|
13576
13629
|
- outputDirectory: The directory in which all reports will be stored
|
|
13630
|
+
- clonedSourcePackagesPath: Sets a custom path for Swift Package Manager dependencies
|
|
13631
|
+
- useSystemScm: Lets xcodebuild use system's scm configuration
|
|
13632
|
+
- isSwiftPackage: Enables generating coverage reports for Package.swift derived projects
|
|
13577
13633
|
- htmlReport: Produce an HTML report
|
|
13578
13634
|
- markdownReport: Produce a Markdown report
|
|
13579
13635
|
- jsonReport: Produce a JSON report
|
|
@@ -13585,6 +13641,7 @@ public func xcodebuild() {
|
|
|
13585
13641
|
- slackMessage: The message which is published together with a successful report
|
|
13586
13642
|
- ignoreFilePath: Relative or absolute path to the file containing the list of ignored files
|
|
13587
13643
|
- includeTestTargets: Enables coverage reports for .xctest targets
|
|
13644
|
+
- includeZeroTargets: Final report will include target even if the coverage is 0%
|
|
13588
13645
|
- excludeTargets: Comma separated list of targets to exclude from coverage report
|
|
13589
13646
|
- includeTargets: Comma separated list of targets to include in coverage report. If specified then exlude_targets will be ignored
|
|
13590
13647
|
- onlyProjectTargets: Display the coverage only for main project targets (e.g. skip Pods targets)
|
|
@@ -13597,7 +13654,7 @@ public func xcodebuild() {
|
|
|
13597
13654
|
- legacySupport: Whether xcov should parse a xccoverage file instead on xccovreport
|
|
13598
13655
|
|
|
13599
13656
|
Create nice code coverage reports and post coverage summaries on Slack *(xcov gem is required)*.
|
|
13600
|
-
More information: [https://github.com/
|
|
13657
|
+
More information: [https://github.com/fastlane-community/xcov](https://github.com/fastlane-community/xcov).
|
|
13601
13658
|
*/
|
|
13602
13659
|
public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13603
13660
|
project: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
@@ -13605,7 +13662,11 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
|
13605
13662
|
configuration: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13606
13663
|
sourceDirectory: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13607
13664
|
derivedDataPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13665
|
+
xccovFileDirectPath: OptionalConfigValue<[String]?> = .fastlaneDefault(nil),
|
|
13608
13666
|
outputDirectory: String = "./xcov_report",
|
|
13667
|
+
clonedSourcePackagesPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13668
|
+
useSystemScm: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
13669
|
+
isSwiftPackage: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
13609
13670
|
htmlReport: OptionalConfigValue<Bool> = .fastlaneDefault(true),
|
|
13610
13671
|
markdownReport: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
13611
13672
|
jsonReport: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
@@ -13617,6 +13678,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
|
13617
13678
|
slackMessage: String = "Your *xcov* coverage report",
|
|
13618
13679
|
ignoreFilePath: String = "./.xcovignore",
|
|
13619
13680
|
includeTestTargets: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
13681
|
+
includeZeroTargets: OptionalConfigValue<Bool> = .fastlaneDefault(true),
|
|
13620
13682
|
excludeTargets: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13621
13683
|
includeTargets: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
13622
13684
|
onlyProjectTargets: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
|
@@ -13634,7 +13696,11 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
|
13634
13696
|
let configurationArg = configuration.asRubyArgument(name: "configuration", type: nil)
|
|
13635
13697
|
let sourceDirectoryArg = sourceDirectory.asRubyArgument(name: "source_directory", type: nil)
|
|
13636
13698
|
let derivedDataPathArg = derivedDataPath.asRubyArgument(name: "derived_data_path", type: nil)
|
|
13699
|
+
let xccovFileDirectPathArg = xccovFileDirectPath.asRubyArgument(name: "xccov_file_direct_path", type: nil)
|
|
13637
13700
|
let outputDirectoryArg = RubyCommand.Argument(name: "output_directory", value: outputDirectory, type: nil)
|
|
13701
|
+
let clonedSourcePackagesPathArg = clonedSourcePackagesPath.asRubyArgument(name: "cloned_source_packages_path", type: nil)
|
|
13702
|
+
let useSystemScmArg = useSystemScm.asRubyArgument(name: "use_system_scm", type: nil)
|
|
13703
|
+
let isSwiftPackageArg = isSwiftPackage.asRubyArgument(name: "is_swift_package", type: nil)
|
|
13638
13704
|
let htmlReportArg = htmlReport.asRubyArgument(name: "html_report", type: nil)
|
|
13639
13705
|
let markdownReportArg = markdownReport.asRubyArgument(name: "markdown_report", type: nil)
|
|
13640
13706
|
let jsonReportArg = jsonReport.asRubyArgument(name: "json_report", type: nil)
|
|
@@ -13646,6 +13712,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
|
13646
13712
|
let slackMessageArg = RubyCommand.Argument(name: "slack_message", value: slackMessage, type: nil)
|
|
13647
13713
|
let ignoreFilePathArg = RubyCommand.Argument(name: "ignore_file_path", value: ignoreFilePath, type: nil)
|
|
13648
13714
|
let includeTestTargetsArg = includeTestTargets.asRubyArgument(name: "include_test_targets", type: nil)
|
|
13715
|
+
let includeZeroTargetsArg = includeZeroTargets.asRubyArgument(name: "include_zero_targets", type: nil)
|
|
13649
13716
|
let excludeTargetsArg = excludeTargets.asRubyArgument(name: "exclude_targets", type: nil)
|
|
13650
13717
|
let includeTargetsArg = includeTargets.asRubyArgument(name: "include_targets", type: nil)
|
|
13651
13718
|
let onlyProjectTargetsArg = onlyProjectTargets.asRubyArgument(name: "only_project_targets", type: nil)
|
|
@@ -13662,7 +13729,11 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
|
13662
13729
|
configurationArg,
|
|
13663
13730
|
sourceDirectoryArg,
|
|
13664
13731
|
derivedDataPathArg,
|
|
13732
|
+
xccovFileDirectPathArg,
|
|
13665
13733
|
outputDirectoryArg,
|
|
13734
|
+
clonedSourcePackagesPathArg,
|
|
13735
|
+
useSystemScmArg,
|
|
13736
|
+
isSwiftPackageArg,
|
|
13666
13737
|
htmlReportArg,
|
|
13667
13738
|
markdownReportArg,
|
|
13668
13739
|
jsonReportArg,
|
|
@@ -13674,6 +13745,7 @@ public func xcov(workspace: OptionalConfigValue<String?> = .fastlaneDefault(nil)
|
|
|
13674
13745
|
slackMessageArg,
|
|
13675
13746
|
ignoreFilePathArg,
|
|
13676
13747
|
includeTestTargetsArg,
|
|
13748
|
+
includeZeroTargetsArg,
|
|
13677
13749
|
excludeTargetsArg,
|
|
13678
13750
|
includeTargetsArg,
|
|
13679
13751
|
onlyProjectTargetsArg,
|
|
@@ -13828,4 +13900,4 @@ public let snapshotfile: Snapshotfile = .init()
|
|
|
13828
13900
|
|
|
13829
13901
|
// Please don't remove the lines below
|
|
13830
13902
|
// They are used to detect outdated files
|
|
13831
|
-
// FastlaneRunnerAPIVersion [0.9.
|
|
13903
|
+
// FastlaneRunnerAPIVersion [0.9.192]
|
|
@@ -143,6 +143,9 @@ public protocol GymfileProtocol: AnyObject {
|
|
|
143
143
|
/// Sets a custom path for Swift Package Manager dependencies
|
|
144
144
|
var clonedSourcePackagesPath: String? { get }
|
|
145
145
|
|
|
146
|
+
/// Sets a custom package cache path for Swift Package Manager dependencies
|
|
147
|
+
var packageCachePath: String? { get }
|
|
148
|
+
|
|
146
149
|
/// Skips resolution of Swift Package Manager dependencies
|
|
147
150
|
var skipPackageDependenciesResolution: Bool { get }
|
|
148
151
|
|
|
@@ -154,6 +157,9 @@ public protocol GymfileProtocol: AnyObject {
|
|
|
154
157
|
|
|
155
158
|
/// Lets xcodebuild use a specified package authorization provider (keychain|netrc)
|
|
156
159
|
var packageAuthorizationProvider: String? { get }
|
|
160
|
+
|
|
161
|
+
/// Generate AppStoreInfo.plist using swinfo for app-store exports
|
|
162
|
+
var generateAppstoreInfo: Bool { get }
|
|
157
163
|
}
|
|
158
164
|
|
|
159
165
|
public extension GymfileProtocol {
|
|
@@ -204,12 +210,14 @@ public extension GymfileProtocol {
|
|
|
204
210
|
var skipProfileDetection: Bool { return false }
|
|
205
211
|
var xcodebuildCommand: String { return "xcodebuild" }
|
|
206
212
|
var clonedSourcePackagesPath: String? { return nil }
|
|
213
|
+
var packageCachePath: String? { return nil }
|
|
207
214
|
var skipPackageDependenciesResolution: Bool { return false }
|
|
208
215
|
var disablePackageAutomaticUpdates: Bool { return false }
|
|
209
216
|
var useSystemScm: Bool { return false }
|
|
210
217
|
var packageAuthorizationProvider: String? { return nil }
|
|
218
|
+
var generateAppstoreInfo: Bool { return false }
|
|
211
219
|
}
|
|
212
220
|
|
|
213
221
|
// Please don't remove the lines below
|
|
214
222
|
// They are used to detect outdated files
|
|
215
|
-
// FastlaneRunnerAPIVersion [0.9.
|
|
223
|
+
// FastlaneRunnerAPIVersion [0.9.142]
|