cocoapods-fix-module 0.0.7 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/DEMO/.bundle/config +2 -0
- data/DEMO/.gitignore +50 -0
- data/DEMO/DEMO.xcodeproj/project.pbxproj +520 -0
- data/DEMO/DEMO.xcworkspace/contents.xcworkspacedata +10 -0
- data/DEMO/DEMO.xcworkspace/pod.json +1 -0
- data/DEMO/DEMO/AppDelegate.swift +53 -0
- data/DEMO/DEMO/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- data/DEMO/DEMO/Assets.xcassets/Contents.json +6 -0
- data/DEMO/DEMO/Base.lproj/LaunchScreen.storyboard +25 -0
- data/DEMO/DEMO/Info.plist +43 -0
- data/DEMO/DEMO/ViewController.swift +21 -0
- data/DEMO/DEMO/demos/BDWebImage_demo.m +16 -0
- data/DEMO/DEMOTests/DEMOTests.swift +34 -0
- data/DEMO/DEMOTests/Info.plist +22 -0
- data/DEMO/Gemfile +7 -0
- data/DEMO/Gemfile.lock +92 -0
- data/DEMO/Podfile +30 -0
- data/DEMO/Podfile.lock +20 -0
- data/Gemfile.lock +105 -0
- data/cocoapods-fix-module.gemspec +1 -1
- data/lib/cocoapods-fix-module/gem_version.rb +1 -1
- data/lib/cocoapods-fix-module/hint_no_app_target_support.rb +20 -0
- data/lib/cocoapods-fix-module/{patch.rb → patch1.6.rb} +3 -61
- data/lib/cocoapods-fix-module/patch1.7.rb +95 -0
- data/lib/cocoapods-fix-module/patch1.8.rb +95 -0
- data/lib/cocoapods-fix-module/patch_common.rb +67 -0
- data/lib/cocoapods_plugin.rb +11 -6
- metadata +30 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e44213e9ae295276dbaba56c1aafe0b1cd86ea4c571c4c62756b9a6d09a301b5
|
4
|
+
data.tar.gz: 749c3d385c8b06558f701b66f06373536f48dcc811eed89d5e62bb5289d997e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdc1f2db498719e9e1d555cfc8d9b863368c78f473fda3bb901060c75f45e557c6da43186c7c5c466d2e3b8a342399f92a1a5b850f548ad03506f40080fb3f9c
|
7
|
+
data.tar.gz: 9ab2692f2d0fe13de3692bd6a79a39c0bb0bdc27546f5827e0d366f9da97d3ff21fb257031b7a8ae79cc632be2d6a0905cf08bea30ea0dd52f91813f87f5bfe0
|
data/DEMO/.bundle/config
ADDED
data/DEMO/.gitignore
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
|
2
|
+
# Created by https://www.gitignore.io/api/xcode,cocoapods
|
3
|
+
# Edit at https://www.gitignore.io/?templates=xcode,cocoapods
|
4
|
+
|
5
|
+
### CocoaPods ###
|
6
|
+
## CocoaPods GitIgnore Template
|
7
|
+
|
8
|
+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
|
9
|
+
# - Also handy if you have a large number of dependant pods
|
10
|
+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
|
11
|
+
Pods/
|
12
|
+
|
13
|
+
### Xcode ###
|
14
|
+
# Xcode
|
15
|
+
#
|
16
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
17
|
+
|
18
|
+
## User settings
|
19
|
+
xcuserdata/
|
20
|
+
|
21
|
+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
|
22
|
+
*.xcscmblueprint
|
23
|
+
*.xccheckout
|
24
|
+
|
25
|
+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
|
26
|
+
build/
|
27
|
+
DerivedData/
|
28
|
+
*.moved-aside
|
29
|
+
*.pbxuser
|
30
|
+
!default.pbxuser
|
31
|
+
*.mode1v3
|
32
|
+
!default.mode1v3
|
33
|
+
*.mode2v3
|
34
|
+
!default.mode2v3
|
35
|
+
*.perspectivev3
|
36
|
+
!default.perspectivev3
|
37
|
+
|
38
|
+
### Xcode Patch ###
|
39
|
+
*.xcodeproj/*
|
40
|
+
!*.xcodeproj/project.pbxproj
|
41
|
+
!*.xcodeproj/xcshareddata/
|
42
|
+
!*.xcworkspace/contents.xcworkspacedata
|
43
|
+
/*.gcno
|
44
|
+
**/xcshareddata/WorkspaceSettings.xcsettings
|
45
|
+
|
46
|
+
# End of https://www.gitignore.io/api/xcode,cocoapods
|
47
|
+
|
48
|
+
|
49
|
+
# the bundler local cache
|
50
|
+
.bundler_cache/
|
@@ -0,0 +1,520 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 50;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
8BC2E4C8225F2B8600EC0609 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BC2E4C7225F2B8600EC0609 /* AppDelegate.swift */; };
|
11
|
+
8BC2E4CA225F2B8600EC0609 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BC2E4C9225F2B8600EC0609 /* ViewController.swift */; };
|
12
|
+
8BC2E4CF225F2B8700EC0609 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8BC2E4CE225F2B8700EC0609 /* Assets.xcassets */; };
|
13
|
+
8BC2E4D2225F2B8700EC0609 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8BC2E4D0225F2B8700EC0609 /* LaunchScreen.storyboard */; };
|
14
|
+
8BC2E4DD225F2B8800EC0609 /* DEMOTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BC2E4DC225F2B8800EC0609 /* DEMOTests.swift */; };
|
15
|
+
B5718745CA99D354424A88F5 /* libPods-DEMO.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 705347DFDD77D79EF5D8670A /* libPods-DEMO.a */; };
|
16
|
+
E3427D9A29DF4BCBFB648B74 /* BDWebImage_demo.m in Sources */ = {isa = PBXBuildFile; fileRef = 58803438D58688A4889122E9 /* BDWebImage_demo.m */; };
|
17
|
+
/* End PBXBuildFile section */
|
18
|
+
|
19
|
+
/* Begin PBXContainerItemProxy section */
|
20
|
+
8BC2E4D9225F2B8800EC0609 /* PBXContainerItemProxy */ = {
|
21
|
+
isa = PBXContainerItemProxy;
|
22
|
+
containerPortal = 8BC2E4BC225F2B8600EC0609 /* Project object */;
|
23
|
+
proxyType = 1;
|
24
|
+
remoteGlobalIDString = 8BC2E4C3225F2B8600EC0609;
|
25
|
+
remoteInfo = DEMO;
|
26
|
+
};
|
27
|
+
/* End PBXContainerItemProxy section */
|
28
|
+
|
29
|
+
/* Begin PBXFileReference section */
|
30
|
+
186D191C4493E5CDEEB488A1 /* Pods-DEMO.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DEMO.release.xcconfig"; path = "Target Support Files/Pods-DEMO/Pods-DEMO.release.xcconfig"; sourceTree = "<group>"; };
|
31
|
+
46EA394CE91257802CC8117D /* Pods-DEMO.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DEMO.debug.xcconfig"; path = "Target Support Files/Pods-DEMO/Pods-DEMO.debug.xcconfig"; sourceTree = "<group>"; };
|
32
|
+
58803438D58688A4889122E9 /* BDWebImage_demo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BDWebImage_demo.m; sourceTree = "<group>"; };
|
33
|
+
705347DFDD77D79EF5D8670A /* libPods-DEMO.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DEMO.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
34
|
+
8BC2E4C4225F2B8600EC0609 /* DEMO.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DEMO.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
35
|
+
8BC2E4C7225F2B8600EC0609 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
36
|
+
8BC2E4C9225F2B8600EC0609 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
37
|
+
8BC2E4CE225F2B8700EC0609 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
38
|
+
8BC2E4D1225F2B8700EC0609 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
39
|
+
8BC2E4D3225F2B8700EC0609 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
40
|
+
8BC2E4D8225F2B8800EC0609 /* DEMOTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DEMOTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
41
|
+
8BC2E4DC225F2B8800EC0609 /* DEMOTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DEMOTests.swift; sourceTree = "<group>"; };
|
42
|
+
8BC2E4DE225F2B8800EC0609 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
43
|
+
/* End PBXFileReference section */
|
44
|
+
|
45
|
+
/* Begin PBXFrameworksBuildPhase section */
|
46
|
+
8BC2E4C1225F2B8600EC0609 /* Frameworks */ = {
|
47
|
+
isa = PBXFrameworksBuildPhase;
|
48
|
+
buildActionMask = 2147483647;
|
49
|
+
files = (
|
50
|
+
B5718745CA99D354424A88F5 /* libPods-DEMO.a in Frameworks */,
|
51
|
+
);
|
52
|
+
runOnlyForDeploymentPostprocessing = 0;
|
53
|
+
};
|
54
|
+
8BC2E4D5225F2B8800EC0609 /* Frameworks */ = {
|
55
|
+
isa = PBXFrameworksBuildPhase;
|
56
|
+
buildActionMask = 2147483647;
|
57
|
+
files = (
|
58
|
+
);
|
59
|
+
runOnlyForDeploymentPostprocessing = 0;
|
60
|
+
};
|
61
|
+
/* End PBXFrameworksBuildPhase section */
|
62
|
+
|
63
|
+
/* Begin PBXGroup section */
|
64
|
+
6611985CF35B4073D1F04F62 /* demos */ = {
|
65
|
+
isa = PBXGroup;
|
66
|
+
children = (
|
67
|
+
58803438D58688A4889122E9 /* BDWebImage_demo.m */,
|
68
|
+
);
|
69
|
+
name = demos;
|
70
|
+
path = ./demos;
|
71
|
+
sourceTree = "<group>";
|
72
|
+
};
|
73
|
+
8BC2E4BB225F2B8600EC0609 = {
|
74
|
+
isa = PBXGroup;
|
75
|
+
children = (
|
76
|
+
8BC2E4C6225F2B8600EC0609 /* DEMO */,
|
77
|
+
8BC2E4DB225F2B8800EC0609 /* DEMOTests */,
|
78
|
+
8BC2E4C5225F2B8600EC0609 /* Products */,
|
79
|
+
C9B369AEF04C3A9342A94373 /* Pods */,
|
80
|
+
8E0CE905D9ECC9CB131F60A4 /* Frameworks */,
|
81
|
+
);
|
82
|
+
sourceTree = "<group>";
|
83
|
+
};
|
84
|
+
8BC2E4C5225F2B8600EC0609 /* Products */ = {
|
85
|
+
isa = PBXGroup;
|
86
|
+
children = (
|
87
|
+
8BC2E4C4225F2B8600EC0609 /* DEMO.app */,
|
88
|
+
8BC2E4D8225F2B8800EC0609 /* DEMOTests.xctest */,
|
89
|
+
);
|
90
|
+
name = Products;
|
91
|
+
sourceTree = "<group>";
|
92
|
+
};
|
93
|
+
8BC2E4C6225F2B8600EC0609 /* DEMO */ = {
|
94
|
+
isa = PBXGroup;
|
95
|
+
children = (
|
96
|
+
8BC2E4C7225F2B8600EC0609 /* AppDelegate.swift */,
|
97
|
+
8BC2E4C9225F2B8600EC0609 /* ViewController.swift */,
|
98
|
+
8BC2E4CE225F2B8700EC0609 /* Assets.xcassets */,
|
99
|
+
8BC2E4D0225F2B8700EC0609 /* LaunchScreen.storyboard */,
|
100
|
+
8BC2E4D3225F2B8700EC0609 /* Info.plist */,
|
101
|
+
6611985CF35B4073D1F04F62 /* demos */,
|
102
|
+
);
|
103
|
+
path = DEMO;
|
104
|
+
sourceTree = "<group>";
|
105
|
+
};
|
106
|
+
8BC2E4DB225F2B8800EC0609 /* DEMOTests */ = {
|
107
|
+
isa = PBXGroup;
|
108
|
+
children = (
|
109
|
+
8BC2E4DC225F2B8800EC0609 /* DEMOTests.swift */,
|
110
|
+
8BC2E4DE225F2B8800EC0609 /* Info.plist */,
|
111
|
+
);
|
112
|
+
path = DEMOTests;
|
113
|
+
sourceTree = "<group>";
|
114
|
+
};
|
115
|
+
8E0CE905D9ECC9CB131F60A4 /* Frameworks */ = {
|
116
|
+
isa = PBXGroup;
|
117
|
+
children = (
|
118
|
+
705347DFDD77D79EF5D8670A /* libPods-DEMO.a */,
|
119
|
+
);
|
120
|
+
name = Frameworks;
|
121
|
+
sourceTree = "<group>";
|
122
|
+
};
|
123
|
+
C9B369AEF04C3A9342A94373 /* Pods */ = {
|
124
|
+
isa = PBXGroup;
|
125
|
+
children = (
|
126
|
+
46EA394CE91257802CC8117D /* Pods-DEMO.debug.xcconfig */,
|
127
|
+
186D191C4493E5CDEEB488A1 /* Pods-DEMO.release.xcconfig */,
|
128
|
+
);
|
129
|
+
name = Pods;
|
130
|
+
path = Pods;
|
131
|
+
sourceTree = "<group>";
|
132
|
+
};
|
133
|
+
/* End PBXGroup section */
|
134
|
+
|
135
|
+
/* Begin PBXNativeTarget section */
|
136
|
+
8BC2E4C3225F2B8600EC0609 /* DEMO */ = {
|
137
|
+
isa = PBXNativeTarget;
|
138
|
+
buildConfigurationList = 8BC2E4E1225F2B8800EC0609 /* Build configuration list for PBXNativeTarget "DEMO" */;
|
139
|
+
buildPhases = (
|
140
|
+
2E97151BCF2BDEB19D3EF704 /* [CP] Check Pods Manifest.lock */,
|
141
|
+
8BC2E4C0225F2B8600EC0609 /* Sources */,
|
142
|
+
8BC2E4C1225F2B8600EC0609 /* Frameworks */,
|
143
|
+
8BC2E4C2225F2B8600EC0609 /* Resources */,
|
144
|
+
);
|
145
|
+
buildRules = (
|
146
|
+
);
|
147
|
+
dependencies = (
|
148
|
+
);
|
149
|
+
name = DEMO;
|
150
|
+
productName = DEMO;
|
151
|
+
productReference = 8BC2E4C4225F2B8600EC0609 /* DEMO.app */;
|
152
|
+
productType = "com.apple.product-type.application";
|
153
|
+
};
|
154
|
+
8BC2E4D7225F2B8800EC0609 /* DEMOTests */ = {
|
155
|
+
isa = PBXNativeTarget;
|
156
|
+
buildConfigurationList = 8BC2E4E4225F2B8800EC0609 /* Build configuration list for PBXNativeTarget "DEMOTests" */;
|
157
|
+
buildPhases = (
|
158
|
+
8BC2E4D4225F2B8800EC0609 /* Sources */,
|
159
|
+
8BC2E4D5225F2B8800EC0609 /* Frameworks */,
|
160
|
+
8BC2E4D6225F2B8800EC0609 /* Resources */,
|
161
|
+
);
|
162
|
+
buildRules = (
|
163
|
+
);
|
164
|
+
dependencies = (
|
165
|
+
8BC2E4DA225F2B8800EC0609 /* PBXTargetDependency */,
|
166
|
+
);
|
167
|
+
name = DEMOTests;
|
168
|
+
productName = DEMOTests;
|
169
|
+
productReference = 8BC2E4D8225F2B8800EC0609 /* DEMOTests.xctest */;
|
170
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
171
|
+
};
|
172
|
+
/* End PBXNativeTarget section */
|
173
|
+
|
174
|
+
/* Begin PBXProject section */
|
175
|
+
8BC2E4BC225F2B8600EC0609 /* Project object */ = {
|
176
|
+
isa = PBXProject;
|
177
|
+
attributes = {
|
178
|
+
DEMO = DEMO;
|
179
|
+
LastSwiftUpdateCheck = 1020;
|
180
|
+
LastUpgradeCheck = 1020;
|
181
|
+
TargetAttributes = {
|
182
|
+
8BC2E4C3225F2B8600EC0609 = {
|
183
|
+
CreatedOnToolsVersion = 10.2;
|
184
|
+
};
|
185
|
+
8BC2E4D7225F2B8800EC0609 = {
|
186
|
+
CreatedOnToolsVersion = 10.2;
|
187
|
+
TestTargetID = 8BC2E4C3225F2B8600EC0609;
|
188
|
+
};
|
189
|
+
};
|
190
|
+
};
|
191
|
+
buildConfigurationList = 8BC2E4BF225F2B8600EC0609 /* Build configuration list for PBXProject "DEMO" */;
|
192
|
+
compatibilityVersion = "Xcode 9.3";
|
193
|
+
developmentRegion = en;
|
194
|
+
hasScannedForEncodings = 0;
|
195
|
+
knownRegions = (
|
196
|
+
en,
|
197
|
+
Base,
|
198
|
+
);
|
199
|
+
mainGroup = 8BC2E4BB225F2B8600EC0609;
|
200
|
+
productRefGroup = 8BC2E4C5225F2B8600EC0609 /* Products */;
|
201
|
+
projectDirPath = "";
|
202
|
+
projectRoot = "";
|
203
|
+
targets = (
|
204
|
+
8BC2E4C3225F2B8600EC0609 /* DEMO */,
|
205
|
+
8BC2E4D7225F2B8800EC0609 /* DEMOTests */,
|
206
|
+
);
|
207
|
+
};
|
208
|
+
/* End PBXProject section */
|
209
|
+
|
210
|
+
/* Begin PBXResourcesBuildPhase section */
|
211
|
+
8BC2E4C2225F2B8600EC0609 /* Resources */ = {
|
212
|
+
isa = PBXResourcesBuildPhase;
|
213
|
+
buildActionMask = 2147483647;
|
214
|
+
files = (
|
215
|
+
8BC2E4D2225F2B8700EC0609 /* LaunchScreen.storyboard in Resources */,
|
216
|
+
8BC2E4CF225F2B8700EC0609 /* Assets.xcassets in Resources */,
|
217
|
+
);
|
218
|
+
runOnlyForDeploymentPostprocessing = 0;
|
219
|
+
};
|
220
|
+
8BC2E4D6225F2B8800EC0609 /* Resources */ = {
|
221
|
+
isa = PBXResourcesBuildPhase;
|
222
|
+
buildActionMask = 2147483647;
|
223
|
+
files = (
|
224
|
+
);
|
225
|
+
runOnlyForDeploymentPostprocessing = 0;
|
226
|
+
};
|
227
|
+
/* End PBXResourcesBuildPhase section */
|
228
|
+
|
229
|
+
/* Begin PBXShellScriptBuildPhase section */
|
230
|
+
2E97151BCF2BDEB19D3EF704 /* [CP] Check Pods Manifest.lock */ = {
|
231
|
+
isa = PBXShellScriptBuildPhase;
|
232
|
+
buildActionMask = 2147483647;
|
233
|
+
files = (
|
234
|
+
);
|
235
|
+
inputFileListPaths = (
|
236
|
+
);
|
237
|
+
inputPaths = (
|
238
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
239
|
+
"${PODS_ROOT}/Manifest.lock",
|
240
|
+
);
|
241
|
+
name = "[CP] Check Pods Manifest.lock";
|
242
|
+
outputFileListPaths = (
|
243
|
+
);
|
244
|
+
outputPaths = (
|
245
|
+
"$(DERIVED_FILE_DIR)/Pods-DEMO-checkManifestLockResult.txt",
|
246
|
+
);
|
247
|
+
runOnlyForDeploymentPostprocessing = 0;
|
248
|
+
shellPath = /bin/sh;
|
249
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
250
|
+
showEnvVarsInLog = 0;
|
251
|
+
};
|
252
|
+
/* End PBXShellScriptBuildPhase section */
|
253
|
+
|
254
|
+
/* Begin PBXSourcesBuildPhase section */
|
255
|
+
8BC2E4C0225F2B8600EC0609 /* Sources */ = {
|
256
|
+
isa = PBXSourcesBuildPhase;
|
257
|
+
buildActionMask = 2147483647;
|
258
|
+
files = (
|
259
|
+
8BC2E4CA225F2B8600EC0609 /* ViewController.swift in Sources */,
|
260
|
+
8BC2E4C8225F2B8600EC0609 /* AppDelegate.swift in Sources */,
|
261
|
+
E3427D9A29DF4BCBFB648B74 /* BDWebImage_demo.m in Sources */,
|
262
|
+
);
|
263
|
+
runOnlyForDeploymentPostprocessing = 0;
|
264
|
+
};
|
265
|
+
8BC2E4D4225F2B8800EC0609 /* Sources */ = {
|
266
|
+
isa = PBXSourcesBuildPhase;
|
267
|
+
buildActionMask = 2147483647;
|
268
|
+
files = (
|
269
|
+
8BC2E4DD225F2B8800EC0609 /* DEMOTests.swift in Sources */,
|
270
|
+
);
|
271
|
+
runOnlyForDeploymentPostprocessing = 0;
|
272
|
+
};
|
273
|
+
/* End PBXSourcesBuildPhase section */
|
274
|
+
|
275
|
+
/* Begin PBXTargetDependency section */
|
276
|
+
8BC2E4DA225F2B8800EC0609 /* PBXTargetDependency */ = {
|
277
|
+
isa = PBXTargetDependency;
|
278
|
+
target = 8BC2E4C3225F2B8600EC0609 /* DEMO */;
|
279
|
+
targetProxy = 8BC2E4D9225F2B8800EC0609 /* PBXContainerItemProxy */;
|
280
|
+
};
|
281
|
+
/* End PBXTargetDependency section */
|
282
|
+
|
283
|
+
/* Begin PBXVariantGroup section */
|
284
|
+
8BC2E4D0225F2B8700EC0609 /* LaunchScreen.storyboard */ = {
|
285
|
+
isa = PBXVariantGroup;
|
286
|
+
children = (
|
287
|
+
8BC2E4D1225F2B8700EC0609 /* Base */,
|
288
|
+
);
|
289
|
+
name = LaunchScreen.storyboard;
|
290
|
+
sourceTree = "<group>";
|
291
|
+
};
|
292
|
+
/* End PBXVariantGroup section */
|
293
|
+
|
294
|
+
/* Begin XCBuildConfiguration section */
|
295
|
+
8BC2E4DF225F2B8800EC0609 /* Debug */ = {
|
296
|
+
isa = XCBuildConfiguration;
|
297
|
+
buildSettings = {
|
298
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
299
|
+
CLANG_ANALYZER_NONNULL = YES;
|
300
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
301
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
302
|
+
CLANG_CXX_LIBRARY = "libc++";
|
303
|
+
CLANG_ENABLE_MODULES = YES;
|
304
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
305
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
306
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
307
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
308
|
+
CLANG_WARN_COMMA = YES;
|
309
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
310
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
311
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
312
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
313
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
314
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
315
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
316
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
317
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
318
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
319
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
320
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
321
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
322
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
323
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
324
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
325
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
326
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
327
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
328
|
+
COPY_PHASE_STRIP = NO;
|
329
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
330
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
331
|
+
ENABLE_TESTABILITY = YES;
|
332
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
333
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
334
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
335
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
336
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
337
|
+
"DEBUG=1",
|
338
|
+
"$(inherited)",
|
339
|
+
);
|
340
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
341
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
342
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
343
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
344
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
345
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
346
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.2;
|
347
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
348
|
+
MTL_FAST_MATH = YES;
|
349
|
+
ONLY_ACTIVE_ARCH = YES;
|
350
|
+
SDKROOT = iphoneos;
|
351
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
352
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
353
|
+
};
|
354
|
+
name = Debug;
|
355
|
+
};
|
356
|
+
8BC2E4E0225F2B8800EC0609 /* Release */ = {
|
357
|
+
isa = XCBuildConfiguration;
|
358
|
+
buildSettings = {
|
359
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
360
|
+
CLANG_ANALYZER_NONNULL = YES;
|
361
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
362
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
363
|
+
CLANG_CXX_LIBRARY = "libc++";
|
364
|
+
CLANG_ENABLE_MODULES = YES;
|
365
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
366
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
367
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
368
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
369
|
+
CLANG_WARN_COMMA = YES;
|
370
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
371
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
372
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
373
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
374
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
375
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
376
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
377
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
378
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
379
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
380
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
381
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
382
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
383
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
384
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
385
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
386
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
387
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
388
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
389
|
+
COPY_PHASE_STRIP = NO;
|
390
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
391
|
+
ENABLE_NS_ASSERTIONS = NO;
|
392
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
393
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
394
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
395
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
396
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
397
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
398
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
399
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
400
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
401
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.2;
|
402
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
403
|
+
MTL_FAST_MATH = YES;
|
404
|
+
SDKROOT = iphoneos;
|
405
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
406
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
407
|
+
VALIDATE_PRODUCT = YES;
|
408
|
+
};
|
409
|
+
name = Release;
|
410
|
+
};
|
411
|
+
8BC2E4E2225F2B8800EC0609 /* Debug */ = {
|
412
|
+
isa = XCBuildConfiguration;
|
413
|
+
baseConfigurationReference = 46EA394CE91257802CC8117D /* Pods-DEMO.debug.xcconfig */;
|
414
|
+
buildSettings = {
|
415
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
416
|
+
CODE_SIGN_STYLE = Automatic;
|
417
|
+
INFOPLIST_FILE = DEMO/Info.plist;
|
418
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
419
|
+
"$(inherited)",
|
420
|
+
"@executable_path/Frameworks",
|
421
|
+
);
|
422
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.demo.DEMO;
|
423
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
424
|
+
SWIFT_VERSION = 5.0;
|
425
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
426
|
+
};
|
427
|
+
name = Debug;
|
428
|
+
};
|
429
|
+
8BC2E4E3225F2B8800EC0609 /* Release */ = {
|
430
|
+
isa = XCBuildConfiguration;
|
431
|
+
baseConfigurationReference = 186D191C4493E5CDEEB488A1 /* Pods-DEMO.release.xcconfig */;
|
432
|
+
buildSettings = {
|
433
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
434
|
+
CODE_SIGN_STYLE = Automatic;
|
435
|
+
INFOPLIST_FILE = DEMO/Info.plist;
|
436
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
437
|
+
"$(inherited)",
|
438
|
+
"@executable_path/Frameworks",
|
439
|
+
);
|
440
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.demo.DEMO;
|
441
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
442
|
+
SWIFT_VERSION = 5.0;
|
443
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
444
|
+
};
|
445
|
+
name = Release;
|
446
|
+
};
|
447
|
+
8BC2E4E5225F2B8800EC0609 /* Debug */ = {
|
448
|
+
isa = XCBuildConfiguration;
|
449
|
+
buildSettings = {
|
450
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
451
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
452
|
+
CODE_SIGN_STYLE = Automatic;
|
453
|
+
INFOPLIST_FILE = DEMOTests/Info.plist;
|
454
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
455
|
+
"$(inherited)",
|
456
|
+
"@executable_path/Frameworks",
|
457
|
+
"@loader_path/Frameworks",
|
458
|
+
);
|
459
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.demo.DEMOTests;
|
460
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
461
|
+
SWIFT_VERSION = 5.0;
|
462
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
463
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DEMO.app/DEMO";
|
464
|
+
};
|
465
|
+
name = Debug;
|
466
|
+
};
|
467
|
+
8BC2E4E6225F2B8800EC0609 /* Release */ = {
|
468
|
+
isa = XCBuildConfiguration;
|
469
|
+
buildSettings = {
|
470
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
471
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
472
|
+
CODE_SIGN_STYLE = Automatic;
|
473
|
+
INFOPLIST_FILE = DEMOTests/Info.plist;
|
474
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
475
|
+
"$(inherited)",
|
476
|
+
"@executable_path/Frameworks",
|
477
|
+
"@loader_path/Frameworks",
|
478
|
+
);
|
479
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.demo.DEMOTests;
|
480
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
481
|
+
SWIFT_VERSION = 5.0;
|
482
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
483
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DEMO.app/DEMO";
|
484
|
+
};
|
485
|
+
name = Release;
|
486
|
+
};
|
487
|
+
/* End XCBuildConfiguration section */
|
488
|
+
|
489
|
+
/* Begin XCConfigurationList section */
|
490
|
+
8BC2E4BF225F2B8600EC0609 /* Build configuration list for PBXProject "DEMO" */ = {
|
491
|
+
isa = XCConfigurationList;
|
492
|
+
buildConfigurations = (
|
493
|
+
8BC2E4DF225F2B8800EC0609 /* Debug */,
|
494
|
+
8BC2E4E0225F2B8800EC0609 /* Release */,
|
495
|
+
);
|
496
|
+
defaultConfigurationIsVisible = 0;
|
497
|
+
defaultConfigurationName = Release;
|
498
|
+
};
|
499
|
+
8BC2E4E1225F2B8800EC0609 /* Build configuration list for PBXNativeTarget "DEMO" */ = {
|
500
|
+
isa = XCConfigurationList;
|
501
|
+
buildConfigurations = (
|
502
|
+
8BC2E4E2225F2B8800EC0609 /* Debug */,
|
503
|
+
8BC2E4E3225F2B8800EC0609 /* Release */,
|
504
|
+
);
|
505
|
+
defaultConfigurationIsVisible = 0;
|
506
|
+
defaultConfigurationName = Release;
|
507
|
+
};
|
508
|
+
8BC2E4E4225F2B8800EC0609 /* Build configuration list for PBXNativeTarget "DEMOTests" */ = {
|
509
|
+
isa = XCConfigurationList;
|
510
|
+
buildConfigurations = (
|
511
|
+
8BC2E4E5225F2B8800EC0609 /* Debug */,
|
512
|
+
8BC2E4E6225F2B8800EC0609 /* Release */,
|
513
|
+
);
|
514
|
+
defaultConfigurationIsVisible = 0;
|
515
|
+
defaultConfigurationName = Release;
|
516
|
+
};
|
517
|
+
/* End XCConfigurationList section */
|
518
|
+
};
|
519
|
+
rootObject = 8BC2E4BC225F2B8600EC0609 /* Project object */;
|
520
|
+
}
|