Skip to content

Commit 1774349

Browse files
committed
Refactory the workspace and test project path. Which share the same Podfile for Example and Tests, easy to install and cache friendly
1 parent 26d4fb1 commit 1774349

File tree

10 files changed

+451
-218
lines changed

10 files changed

+451
-218
lines changed

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,14 @@ script:
3030
- pod lib lint --allow-warnings
3131

3232
- echo Build example
33-
- pod install --project-directory=Example
34-
- xcodebuild build clean -workspace SDWebImageWebPCoder.xcworkspace -scheme SDWebImageWebPCoderExample -sdk iphonesimulator -destination 'name=iPhone 11 Pro' -configuration Debug | xcpretty -c
33+
- pod install
34+
- xcodebuild build clean -workspace SDWebImageWebPCoder.xcworkspace -scheme SDWebImageWebPCoderExample -sdk iphonesimulator -destination 'name=iPhone 11 Pro' -configuration Debug -UseModernBuildSystem=NO | xcpretty -c
3535

3636
- echo Clean DerivedData
3737
- rm -rf ~/Library/Developer/Xcode/DerivedData/
3838
- mkdir DerivedData
3939

4040
- echo Run the tests
41-
- pod install --project-directory=Tests
4241
- xcodebuild clean test -workspace SDWebImageWebPCoder.xcworkspace -scheme 'SDWebImageWebPCoderTests' -sdk iphonesimulator -destination 'name=iPhone 11 Pro' -configuration Debug -UseModernBuildSystem=NO | xcpretty -c
4342
- mv ~/Library/Developer/Xcode/DerivedData/ ./DerivedData/iOS
4443

Example/Podfile

-8
This file was deleted.

Example/SDWebImageWebPCoderExample.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/* End PBXBuildFile section */
1818

1919
/* Begin PBXFileReference section */
20-
21B3CA4F30EA7284BBF9F6DC /* Pods-SDWebImageWebPCoderExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SDWebImageWebPCoderExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SDWebImageWebPCoderExample/Pods-SDWebImageWebPCoderExample.debug.xcconfig"; sourceTree = "<group>"; };
20+
21B3CA4F30EA7284BBF9F6DC /* Pods-SDWebImageWebPCoderExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SDWebImageWebPCoderExample.debug.xcconfig"; path = "../Pods/Target Support Files/Pods-SDWebImageWebPCoderExample/Pods-SDWebImageWebPCoderExample.debug.xcconfig"; sourceTree = "<group>"; };
2121
803D79CE213597CB00C815FC /* SDWebImageWebPCoderExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SDWebImageWebPCoderExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
2222
803D79D1213597CB00C815FC /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
2323
803D79D2213597CB00C815FC /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
@@ -29,7 +29,7 @@
2929
803D79DF213597CC00C815FC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3030
803D79E0213597CC00C815FC /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
3131
A4247F756BA5BBDD6FFE3E26 /* Pods_SDWebImageWebPCoderExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SDWebImageWebPCoderExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
32-
ABF474EBA40C51CBDE1C9406 /* Pods-SDWebImageWebPCoderExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SDWebImageWebPCoderExample.release.xcconfig"; path = "Pods/Target Support Files/Pods-SDWebImageWebPCoderExample/Pods-SDWebImageWebPCoderExample.release.xcconfig"; sourceTree = "<group>"; };
32+
ABF474EBA40C51CBDE1C9406 /* Pods-SDWebImageWebPCoderExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SDWebImageWebPCoderExample.release.xcconfig"; path = "../Pods/Target Support Files/Pods-SDWebImageWebPCoderExample/Pods-SDWebImageWebPCoderExample.release.xcconfig"; sourceTree = "<group>"; };
3333
/* End PBXFileReference section */
3434

3535
/* Begin PBXFrameworksBuildPhase section */

Podfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
use_frameworks!
2+
3+
example_project_path = 'Example/SDWebImageWebPCoderExample'
4+
test_project_path = 'Tests/SDWebImageWebPCoderTests'
5+
workspace 'SDWebImageWebPCoder.xcworkspace'
6+
7+
target 'SDWebImageWebPCoderExample' do
8+
platform :ios, '8.0'
9+
project example_project_path
10+
pod 'SDWebImageWebPCoder', :path => './'
11+
end
12+
13+
target 'SDWebImageWebPCoderTests' do
14+
platform :ios, '8.0'
15+
project test_project_path
16+
pod 'Expecta'
17+
pod 'SDWebImageWebPCoder', :path => './'
18+
end

SDWebImageWebPCoder.xcodeproj/project.pbxproj

+1-154
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,15 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 51;
6+
objectVersion = 50;
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
0EF5B6264833B7BC20894578 /* Pods_SDWebImageWebPCoderTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46F21AD7D1692EBAC4D0FF33 /* Pods_SDWebImageWebPCoderTests.framework */; };
11-
3219F3B2228B0453003822A6 /* TestImageBlendAnimated.webp in Resources */ = {isa = PBXBuildFile; fileRef = 3219F3B1228B0453003822A6 /* TestImageBlendAnimated.webp */; };
1210
806E77B32136A2E900A316D2 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 806E77AA2136A2E900A316D2 /* UIImage+WebP.m */; };
1311
806E77B42136A2E900A316D2 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 806E77AB2136A2E900A316D2 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
1412
806E77B62136A2E900A316D2 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 806E77AD2136A2E900A316D2 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Public, ); }; };
1513
806E77B72136A2E900A316D2 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 806E77AE2136A2E900A316D2 /* SDImageWebPCoder.m */; };
1614
806E77C72136A7AD00A316D2 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 806E77C62136A7AD00A316D2 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
17-
808C918E213FD131004B0F7C /* SDWebImageWebPCoderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 808C918D213FD131004B0F7C /* SDWebImageWebPCoderTests.m */; };
18-
808C919C213FD2B2004B0F7C /* TestImageStatic.webp in Resources */ = {isa = PBXBuildFile; fileRef = 808C919A213FD2B2004B0F7C /* TestImageStatic.webp */; };
19-
808C919D213FD2B2004B0F7C /* TestImageAnimated.webp in Resources */ = {isa = PBXBuildFile; fileRef = 808C919B213FD2B2004B0F7C /* TestImageAnimated.webp */; };
2015
80BFF2352136AA9100B95470 /* libwebp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80BFF2332136AA9100B95470 /* libwebp.framework */; };
2116
80BFF2362136AA9100B95470 /* SDWebImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80BFF2342136AA9100B95470 /* SDWebImage.framework */; };
2217
80BFF24B2136BB0D00B95470 /* libwebp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80BFF2492136BB0D00B95470 /* libwebp.framework */; };
@@ -45,7 +40,6 @@
4540
/* Begin PBXFileReference section */
4641
28D8AA3D3015E075692FD3E3 /* Pods-SDWebImageWebPCoderTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SDWebImageWebPCoderTests.debug.xcconfig"; path = "Tests/Pods/Target Support Files/Pods-SDWebImageWebPCoderTests/Pods-SDWebImageWebPCoderTests.debug.xcconfig"; sourceTree = "<group>"; };
4742
3217BE7B220547EB003D0310 /* SDWebImageWebPCoder.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = SDWebImageWebPCoder.modulemap; sourceTree = "<group>"; };
48-
3219F3B1228B0453003822A6 /* TestImageBlendAnimated.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestImageBlendAnimated.webp; sourceTree = "<group>"; };
4943
46F21AD7D1692EBAC4D0FF33 /* Pods_SDWebImageWebPCoderTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SDWebImageWebPCoderTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5044
806E779D2136A1C000A316D2 /* SDWebImageWebPCoder.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImageWebPCoder.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5145
806E77AA2136A2E900A316D2 /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
@@ -54,11 +48,6 @@
5448
806E77AE2136A2E900A316D2 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageWebPCoder.m; sourceTree = "<group>"; };
5549
806E77B02136A2E900A316D2 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5650
806E77C62136A7AD00A316D2 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDWebImageWebPCoder.h; sourceTree = "<group>"; };
57-
808C918B213FD130004B0F7C /* SDWebImageWebPCoderTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SDWebImageWebPCoderTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
58-
808C918D213FD131004B0F7C /* SDWebImageWebPCoderTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDWebImageWebPCoderTests.m; sourceTree = "<group>"; };
59-
808C918F213FD131004B0F7C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
60-
808C919A213FD2B2004B0F7C /* TestImageStatic.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestImageStatic.webp; sourceTree = "<group>"; };
61-
808C919B213FD2B2004B0F7C /* TestImageAnimated.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestImageAnimated.webp; sourceTree = "<group>"; };
6251
80BFF2332136AA9100B95470 /* libwebp.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = libwebp.framework; path = Carthage/Build/iOS/libwebp.framework; sourceTree = "<group>"; };
6352
80BFF2342136AA9100B95470 /* SDWebImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDWebImage.framework; path = Carthage/Build/iOS/SDWebImage.framework; sourceTree = "<group>"; };
6453
80BFF2402136BA4900B95470 /* SDWebImageWebPCoder.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImageWebPCoder.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -83,14 +72,6 @@
8372
);
8473
runOnlyForDeploymentPostprocessing = 0;
8574
};
86-
808C9188213FD130004B0F7C /* Frameworks */ = {
87-
isa = PBXFrameworksBuildPhase;
88-
buildActionMask = 2147483647;
89-
files = (
90-
0EF5B6264833B7BC20894578 /* Pods_SDWebImageWebPCoderTests.framework in Frameworks */,
91-
);
92-
runOnlyForDeploymentPostprocessing = 0;
93-
};
9475
80BFF23C2136BA4900B95470 /* Frameworks */ = {
9576
isa = PBXFrameworksBuildPhase;
9677
buildActionMask = 2147483647;
@@ -134,7 +115,6 @@
134115
isa = PBXGroup;
135116
children = (
136117
806E77A82136A2E900A316D2 /* SDImageWebPCoder */,
137-
808C918C213FD131004B0F7C /* Tests */,
138118
806E779E2136A1C000A316D2 /* Products */,
139119
80BFF2312136AA7D00B95470 /* Frameworks */,
140120
52FB3B532EE8775B69517E2E /* Pods */,
@@ -148,7 +128,6 @@
148128
80BFF2402136BA4900B95470 /* SDWebImageWebPCoder.framework */,
149129
80BFF2572136BDBE00B95470 /* SDWebImageWebPCoder.framework */,
150130
80BFF26E2136BE7900B95470 /* SDWebImageWebPCoder.framework */,
151-
808C918B213FD130004B0F7C /* SDWebImageWebPCoderTests.xctest */,
152131
);
153132
name = Products;
154133
sourceTree = "<group>";
@@ -192,26 +171,6 @@
192171
path = Assets;
193172
sourceTree = "<group>";
194173
};
195-
808C918C213FD131004B0F7C /* Tests */ = {
196-
isa = PBXGroup;
197-
children = (
198-
808C9199213FD2B2004B0F7C /* Images */,
199-
808C918D213FD131004B0F7C /* SDWebImageWebPCoderTests.m */,
200-
808C918F213FD131004B0F7C /* Info.plist */,
201-
);
202-
path = Tests;
203-
sourceTree = "<group>";
204-
};
205-
808C9199213FD2B2004B0F7C /* Images */ = {
206-
isa = PBXGroup;
207-
children = (
208-
808C919A213FD2B2004B0F7C /* TestImageStatic.webp */,
209-
808C919B213FD2B2004B0F7C /* TestImageAnimated.webp */,
210-
3219F3B1228B0453003822A6 /* TestImageBlendAnimated.webp */,
211-
);
212-
path = Images;
213-
sourceTree = "<group>";
214-
};
215174
80BFF2312136AA7D00B95470 /* Frameworks */ = {
216175
isa = PBXGroup;
217176
children = (
@@ -324,25 +283,6 @@
324283
productReference = 806E779D2136A1C000A316D2 /* SDWebImageWebPCoder.framework */;
325284
productType = "com.apple.product-type.framework";
326285
};
327-
808C918A213FD130004B0F7C /* SDWebImageWebPCoderTests */ = {
328-
isa = PBXNativeTarget;
329-
buildConfigurationList = 808C9195213FD131004B0F7C /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoderTests" */;
330-
buildPhases = (
331-
1DFDC14C020804C3C316902C /* [CP] Check Pods Manifest.lock */,
332-
808C9187213FD130004B0F7C /* Sources */,
333-
808C9188213FD130004B0F7C /* Frameworks */,
334-
808C9189213FD130004B0F7C /* Resources */,
335-
16EA90D31CB9146CCF2C1C4E /* [CP] Embed Pods Frameworks */,
336-
);
337-
buildRules = (
338-
);
339-
dependencies = (
340-
);
341-
name = SDWebImageWebPCoderTests;
342-
productName = SDWebImageWebPCoderTests;
343-
productReference = 808C918B213FD130004B0F7C /* SDWebImageWebPCoderTests.xctest */;
344-
productType = "com.apple.product-type.bundle.unit-test";
345-
};
346286
80BFF23F2136BA4900B95470 /* SDWebImageWebPCoder-macos */ = {
347287
isa = PBXNativeTarget;
348288
buildConfigurationList = 80BFF2452136BA4900B95470 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder-macos" */;
@@ -409,9 +349,6 @@
409349
806E779C2136A1C000A316D2 = {
410350
CreatedOnToolsVersion = 9.4.1;
411351
};
412-
808C918A213FD130004B0F7C = {
413-
CreatedOnToolsVersion = 9.4.1;
414-
};
415352
80BFF23F2136BA4900B95470 = {
416353
CreatedOnToolsVersion = 9.4.1;
417354
};
@@ -439,7 +376,6 @@
439376
80BFF23F2136BA4900B95470 /* SDWebImageWebPCoder-macos */,
440377
80BFF2562136BDBE00B95470 /* SDWebImageWebPCoder-tvos */,
441378
80BFF26D2136BE7900B95470 /* SDWebImageWebPCoder-watchos */,
442-
808C918A213FD130004B0F7C /* SDWebImageWebPCoderTests */,
443379
);
444380
};
445381
/* End PBXProject section */
@@ -452,16 +388,6 @@
452388
);
453389
runOnlyForDeploymentPostprocessing = 0;
454390
};
455-
808C9189213FD130004B0F7C /* Resources */ = {
456-
isa = PBXResourcesBuildPhase;
457-
buildActionMask = 2147483647;
458-
files = (
459-
3219F3B2228B0453003822A6 /* TestImageBlendAnimated.webp in Resources */,
460-
808C919D213FD2B2004B0F7C /* TestImageAnimated.webp in Resources */,
461-
808C919C213FD2B2004B0F7C /* TestImageStatic.webp in Resources */,
462-
);
463-
runOnlyForDeploymentPostprocessing = 0;
464-
};
465391
80BFF23E2136BA4900B95470 /* Resources */ = {
466392
isa = PBXResourcesBuildPhase;
467393
buildActionMask = 2147483647;
@@ -485,44 +411,6 @@
485411
};
486412
/* End PBXResourcesBuildPhase section */
487413

488-
/* Begin PBXShellScriptBuildPhase section */
489-
16EA90D31CB9146CCF2C1C4E /* [CP] Embed Pods Frameworks */ = {
490-
isa = PBXShellScriptBuildPhase;
491-
buildActionMask = 2147483647;
492-
files = (
493-
);
494-
inputFileListPaths = (
495-
"${PODS_ROOT}/Target Support Files/Pods-SDWebImageWebPCoderTests/Pods-SDWebImageWebPCoderTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
496-
);
497-
name = "[CP] Embed Pods Frameworks";
498-
outputFileListPaths = (
499-
"${PODS_ROOT}/Target Support Files/Pods-SDWebImageWebPCoderTests/Pods-SDWebImageWebPCoderTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
500-
);
501-
runOnlyForDeploymentPostprocessing = 0;
502-
shellPath = /bin/sh;
503-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SDWebImageWebPCoderTests/Pods-SDWebImageWebPCoderTests-frameworks.sh\"\n";
504-
showEnvVarsInLog = 0;
505-
};
506-
1DFDC14C020804C3C316902C /* [CP] Check Pods Manifest.lock */ = {
507-
isa = PBXShellScriptBuildPhase;
508-
buildActionMask = 2147483647;
509-
files = (
510-
);
511-
inputPaths = (
512-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
513-
"${PODS_ROOT}/Manifest.lock",
514-
);
515-
name = "[CP] Check Pods Manifest.lock";
516-
outputPaths = (
517-
"$(DERIVED_FILE_DIR)/Pods-SDWebImageWebPCoderTests-checkManifestLockResult.txt",
518-
);
519-
runOnlyForDeploymentPostprocessing = 0;
520-
shellPath = /bin/sh;
521-
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";
522-
showEnvVarsInLog = 0;
523-
};
524-
/* End PBXShellScriptBuildPhase section */
525-
526414
/* Begin PBXSourcesBuildPhase section */
527415
806E77982136A1C000A316D2 /* Sources */ = {
528416
isa = PBXSourcesBuildPhase;
@@ -533,14 +421,6 @@
533421
);
534422
runOnlyForDeploymentPostprocessing = 0;
535423
};
536-
808C9187213FD130004B0F7C /* Sources */ = {
537-
isa = PBXSourcesBuildPhase;
538-
buildActionMask = 2147483647;
539-
files = (
540-
808C918E213FD131004B0F7C /* SDWebImageWebPCoderTests.m in Sources */,
541-
);
542-
runOnlyForDeploymentPostprocessing = 0;
543-
};
544424
80BFF23B2136BA4900B95470 /* Sources */ = {
545425
isa = PBXSourcesBuildPhase;
546426
buildActionMask = 2147483647;
@@ -770,30 +650,6 @@
770650
};
771651
name = Release;
772652
};
773-
808C9193213FD131004B0F7C /* Debug */ = {
774-
isa = XCBuildConfiguration;
775-
baseConfigurationReference = 28D8AA3D3015E075692FD3E3 /* Pods-SDWebImageWebPCoderTests.debug.xcconfig */;
776-
buildSettings = {
777-
GCC_PREPROCESSOR_DEFINITIONS = (
778-
"DEBUG=1",
779-
"$(inherited)",
780-
);
781-
INFOPLIST_FILE = Tests/Info.plist;
782-
PRODUCT_BUNDLE_IDENTIFIER = org.SDWebImage.SDWebImageWebPCoderTests;
783-
PRODUCT_NAME = "$(TARGET_NAME)";
784-
};
785-
name = Debug;
786-
};
787-
808C9194213FD131004B0F7C /* Release */ = {
788-
isa = XCBuildConfiguration;
789-
baseConfigurationReference = D92E6791BF088D1A101E670E /* Pods-SDWebImageWebPCoderTests.release.xcconfig */;
790-
buildSettings = {
791-
INFOPLIST_FILE = Tests/Info.plist;
792-
PRODUCT_BUNDLE_IDENTIFIER = org.SDWebImage.SDWebImageWebPCoderTests;
793-
PRODUCT_NAME = "$(TARGET_NAME)";
794-
};
795-
name = Release;
796-
};
797653
80BFF2462136BA4900B95470 /* Debug */ = {
798654
isa = XCBuildConfiguration;
799655
buildSettings = {
@@ -953,15 +809,6 @@
953809
defaultConfigurationIsVisible = 0;
954810
defaultConfigurationName = Release;
955811
};
956-
808C9195213FD131004B0F7C /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoderTests" */ = {
957-
isa = XCConfigurationList;
958-
buildConfigurations = (
959-
808C9193213FD131004B0F7C /* Debug */,
960-
808C9194213FD131004B0F7C /* Release */,
961-
);
962-
defaultConfigurationIsVisible = 0;
963-
defaultConfigurationName = Release;
964-
};
965812
80BFF2452136BA4900B95470 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder-macos" */ = {
966813
isa = XCConfigurationList;
967814
buildConfigurations = (

SDWebImageWebPCoder.xcworkspace/contents.xcworkspacedata

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tests/Podfile

-10
This file was deleted.

0 commit comments

Comments
 (0)