Skip to content

Commit 2573888

Browse files
committed
Update
1 parent 655c216 commit 2573888

File tree

2 files changed

+48
-48
lines changed

2 files changed

+48
-48
lines changed

Example/cocoapods/FlexLayoutSample.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
/* End PBXCopyFilesBuildPhase section */
6363

6464
/* Begin PBXFileReference section */
65-
0D0595B5E0950936D037ECF2 /* Pods-FlexLayoutSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FlexLayoutSample.release.xcconfig"; path = "Pods/Target Support Files/Pods-FlexLayoutSample/Pods-FlexLayoutSample.release.xcconfig"; sourceTree = "<group>"; };
65+
0D0595B5E0950936D037ECF2 /* Pods-FlexLayoutSample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FlexLayoutSample.release.xcconfig"; path = "../../Pods/Target Support Files/Pods-FlexLayoutSample/Pods-FlexLayoutSample.release.xcconfig"; sourceTree = "<group>"; };
6666
242AECDF1FA011630024E7C2 /* BaseViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = "<group>"; };
6767
242AECE01FA011630024E7C2 /* BasicView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BasicView.swift; sourceTree = "<group>"; };
6868
242AECE11FA011630024E7C2 /* Stylesheet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stylesheet.swift; sourceTree = "<group>"; };
@@ -99,7 +99,7 @@
9999
60BAE155247DF4120020119C /* YogaExampleFView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YogaExampleFView.swift; sourceTree = "<group>"; };
100100
60BAE157247DF4CE0020119C /* YogaExampleFViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YogaExampleFViewController.swift; sourceTree = "<group>"; };
101101
82FCE524E22C2FF5BC4DFBAB /* Pods_FlexLayoutSample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FlexLayoutSample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
102-
8561ACDBCFFA1B4B9ABEAB16 /* Pods-FlexLayoutSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FlexLayoutSample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-FlexLayoutSample/Pods-FlexLayoutSample.debug.xcconfig"; sourceTree = "<group>"; };
102+
8561ACDBCFFA1B4B9ABEAB16 /* Pods-FlexLayoutSample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FlexLayoutSample.debug.xcconfig"; path = "../../Pods/Target Support Files/Pods-FlexLayoutSample/Pods-FlexLayoutSample.debug.xcconfig"; sourceTree = "<group>"; };
103103
DF0E85291F1F749C00AB1956 /* YogaExampleBView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = YogaExampleBView.swift; sourceTree = "<group>"; };
104104
DF0E852A1F1F749C00AB1956 /* YogaExampleBViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = YogaExampleBViewController.swift; sourceTree = "<group>"; };
105105
DF1F2A221F17D11700BA1B97 /* FlexLayoutSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FlexLayoutSample.app; sourceTree = BUILT_PRODUCTS_DIR; };

fastlane/Fastfile

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -34,52 +34,52 @@ platform :ios do
3434
lane :build do
3535
install
3636

37-
swiftlint(
38-
mode: :lint,
39-
config_file: ".swiftlint.yml",
40-
executable: "Pods/SwiftLint/swiftlint",
41-
ignore_exit_status: true
42-
)
43-
44-
# FlexLayout
45-
xcodebuild(
46-
project: "FlexLayout.xcodeproj",
47-
scheme: "FlexLayout",
48-
configuration: "Release",
49-
build: true,
50-
clean: true,
51-
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
52-
)
53-
54-
# FlexLayoutSample from FlexLayout.xcworkspace
55-
xcodebuild(
56-
workspace: "FlexLayout.xcworkspace",
57-
scheme: "FlexLayoutSample",
58-
configuration: "Release",
59-
build: true,
60-
# clean: true,
61-
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
62-
)
63-
64-
# Example Cocoapods
65-
xcodebuild(
66-
workspace: "Example/cocoapods/FlexLayoutSample.xcworkspace",
67-
scheme: "FlexLayoutSample",
68-
configuration: "Release",
69-
build: true,
70-
# clean: true,
71-
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
72-
)
73-
74-
# Example SPM (Swift Package Manager)
75-
xcodebuild(
76-
project: "Example/SPM/FlexLayoutSample-SPM.xcodeproj",
77-
scheme: "FlexLayoutSample-SPM",
78-
configuration: "Release",
79-
build: true,
80-
clean: true,
81-
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
82-
)
37+
# swiftlint(
38+
# mode: :lint,
39+
# config_file: ".swiftlint.yml",
40+
# executable: "Pods/SwiftLint/swiftlint",
41+
# ignore_exit_status: true
42+
# )
43+
44+
# # FlexLayout
45+
# xcodebuild(
46+
# project: "FlexLayout.xcodeproj",
47+
# scheme: "FlexLayout",
48+
# configuration: "Release",
49+
# build: true,
50+
# clean: true,
51+
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
52+
# )
53+
54+
# # FlexLayoutSample from FlexLayout.xcworkspace
55+
# xcodebuild(
56+
# workspace: "FlexLayout.xcworkspace",
57+
# scheme: "FlexLayoutSample",
58+
# configuration: "Release",
59+
# build: true,
60+
# # clean: true,
61+
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
62+
# )
63+
64+
# # Example Cocoapods
65+
# xcodebuild(
66+
# workspace: "Example/cocoapods/FlexLayoutSample.xcworkspace",
67+
# scheme: "FlexLayoutSample",
68+
# configuration: "Release",
69+
# build: true,
70+
# # clean: true,
71+
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
72+
# )
73+
74+
# # Example SPM (Swift Package Manager)
75+
# xcodebuild(
76+
# project: "Example/SPM/FlexLayoutSample-SPM.xcodeproj",
77+
# scheme: "FlexLayoutSample-SPM",
78+
# configuration: "Release",
79+
# build: true,
80+
# clean: true,
81+
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
82+
# )
8383
end
8484

8585
lane :tests do

0 commit comments

Comments
 (0)