Skip to content

Commit c169b52

Browse files
author
Jan Chaloupecky
committed
added carthage support
1 parent 1a374ad commit c169b52

8 files changed

Lines changed: 334 additions & 2 deletions

File tree

Cartfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
github "swisspol/GCDWebServer"
3+
github "ccgus/fmdb"

DebugDatabase/DatabaseUtil.m

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@
88

99
#import "DatabaseUtil.h"
1010
#import <sqlite3.h>
11+
12+
#ifdef COCOAPODS
1113
#import "FMDB.h"
14+
#else
15+
#import <FMDB/FMDB.h>
16+
#endif
17+
18+
1219

1320
@interface DatabaseUtil ()
1421

DebugDatabase/DebugDatabaseManager.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@
77
//
88

99
#import <Foundation/Foundation.h>
10+
11+
#ifdef COCOAPODS
1012
#import <GCDWebServer/GCDWebServer.h>
13+
#else
14+
#import <GCDWebServers/GCDWebServers.h>
15+
#endif
1116

1217
@interface DebugDatabaseManager : GCDWebServer
1318

DebugDatabase/DebugDatabaseManager.m

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
#import "NSURL+scheme.h"
1111
#import "DatabaseUtil.h"
1212
#import "NSString+json.h"
13-
#import "GCDWebServerRequest.h"
14-
#import "GCDWebServerDataResponse.h"
13+
#ifdef COCOAPODS
14+
#import <GCDWebServer/GCDWebServerRequest.h>
15+
#import <GCDWebServer/GCDWebServerDataResponse.h>
16+
#else
17+
#import <GCDWebServers/GCDWebServerRequest.h>
18+
#import <GCDWebServers/GCDWebServerDataResponse.h>
19+
#endif
20+
1521

1622
@interface DebugDatabaseManager ()<GCDWebServerDelegate>
1723

DebugDatabase/Info.plist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>

DebugDatabase/iOSDebugDatabase.h

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//
2+
// iOSDebugDatabase.h
3+
// iOSDebugDatabase
4+
//
5+
// Created by Jan Chaloupecky on 16.12.17.
6+
// Copyright © 2017 wentian. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
//! Project version number for iOSDebugDatabase.
12+
FOUNDATION_EXPORT double iOSDebugDatabaseVersionNumber;
13+
14+
//! Project version string for iOSDebugDatabase.
15+
FOUNDATION_EXPORT const unsigned char iOSDebugDatabaseVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like
18+
#import <iOSDebugDatabase/DebugDatabaseManager.h>
19+
20+

YYDebugDatabase.xcodeproj/project.pbxproj

Lines changed: 185 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@
88

99
/* Begin PBXBuildFile section */
1010
89CC7B5231AD8E77CEC10949 /* libPods-YYDebugDatabase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F79B17EACE993F42581F0F1C /* libPods-YYDebugDatabase.a */; };
11+
8A6C34EC1FE5175100C44E61 /* DebugDatabaseManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE6331F3C4210003A9EB7 /* DebugDatabaseManager.m */; };
12+
8A6C34ED1FE5175400C44E61 /* DatabaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE6431F3D9F8F003A9EB7 /* DatabaseUtil.m */; };
13+
8A6C34EE1FE5175900C44E61 /* NSURL+scheme.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE63C1F3D8016003A9EB7 /* NSURL+scheme.m */; };
14+
8A6C34EF1FE5175C00C44E61 /* NSMutableArray+safe.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE6481F3EA0DF003A9EB7 /* NSMutableArray+safe.m */; };
15+
8A6C34F01FE5175E00C44E61 /* NSMutableDictionary+safe.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE64A1F3EA0DF003A9EB7 /* NSMutableDictionary+safe.m */; };
16+
8A6C34F11FE5176100C44E61 /* NSString+json.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE64E1F3EA78F003A9EB7 /* NSString+json.m */; };
17+
8A6C34F51FE5187700C44E61 /* GCDWebServers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A6C34F31FE5187700C44E61 /* GCDWebServers.framework */; };
18+
8A6C34F61FE5187700C44E61 /* FMDB.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A6C34F41FE5187700C44E61 /* FMDB.framework */; };
19+
8AE40E021FE51FEF00B5F6CA /* DebugDatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AE6321F3C4210003A9EB7 /* DebugDatabaseManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
20+
8AE40E031FE5200100B5F6CA /* DatabaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AE6421F3D9F8F003A9EB7 /* DatabaseUtil.h */; };
21+
8AE40E041FE5200400B5F6CA /* NSURL+scheme.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AE63B1F3D8016003A9EB7 /* NSURL+scheme.h */; };
22+
8AE40E051FE5200700B5F6CA /* NSMutableArray+safe.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AE6471F3EA0DF003A9EB7 /* NSMutableArray+safe.h */; };
23+
8AE40E061FE5200A00B5F6CA /* NSMutableDictionary+safe.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AE6491F3EA0DF003A9EB7 /* NSMutableDictionary+safe.h */; };
24+
8AE40E071FE5200C00B5F6CA /* NSString+json.h in Headers */ = {isa = PBXBuildFile; fileRef = E84AE64D1F3EA78F003A9EB7 /* NSString+json.h */; };
25+
8AE40E221FE5243A00B5F6CA /* iOSDebugDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6C34E11FE516EF00C44E61 /* iOSDebugDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; };
26+
8AE40E231FE5253900B5F6CA /* Web.bundle in Resources */ = {isa = PBXBuildFile; fileRef = E8E069C81F40954500477064 /* Web.bundle */; };
1127
E84AE5F01F3ADDE3003A9EB7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE5EF1F3ADDE3003A9EB7 /* main.m */; };
1228
E84AE5F31F3ADDE3003A9EB7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE5F21F3ADDE3003A9EB7 /* AppDelegate.m */; };
1329
E84AE5F61F3ADDE3003A9EB7 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E84AE5F51F3ADDE3003A9EB7 /* ViewController.m */; };
@@ -29,6 +45,12 @@
2945
/* Begin PBXFileReference section */
3046
22ADD98E9993641841D67B7F /* Pods-YYDebugDatabase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-YYDebugDatabase.debug.xcconfig"; path = "Pods/Target Support Files/Pods-YYDebugDatabase/Pods-YYDebugDatabase.debug.xcconfig"; sourceTree = "<group>"; };
3147
50D992B943B292D10D75C6C2 /* Pods-YYDebugDatabase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-YYDebugDatabase.release.xcconfig"; path = "Pods/Target Support Files/Pods-YYDebugDatabase/Pods-YYDebugDatabase.release.xcconfig"; sourceTree = "<group>"; };
48+
8A6C34DF1FE516EF00C44E61 /* iOSDebugDatabase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = iOSDebugDatabase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
49+
8A6C34E11FE516EF00C44E61 /* iOSDebugDatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iOSDebugDatabase.h; sourceTree = "<group>"; };
50+
8A6C34E21FE516EF00C44E61 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
51+
8A6C34F21FE517CF00C44E61 /* Cartfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cartfile; sourceTree = "<group>"; };
52+
8A6C34F31FE5187700C44E61 /* GCDWebServers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GCDWebServers.framework; path = ../../Build/iOS/GCDWebServers.framework; sourceTree = "<group>"; };
53+
8A6C34F41FE5187700C44E61 /* FMDB.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FMDB.framework; path = ../../Build/iOS/FMDB.framework; sourceTree = "<group>"; };
3254
E84AE5EB1F3ADDE3003A9EB7 /* YYDebugDatabase.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = YYDebugDatabase.app; sourceTree = BUILT_PRODUCTS_DIR; };
3355
E84AE5EF1F3ADDE3003A9EB7 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
3456
E84AE5F11F3ADDE3003A9EB7 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
@@ -59,6 +81,15 @@
5981
/* End PBXFileReference section */
6082

6183
/* Begin PBXFrameworksBuildPhase section */
84+
8A6C34DB1FE516EF00C44E61 /* Frameworks */ = {
85+
isa = PBXFrameworksBuildPhase;
86+
buildActionMask = 2147483647;
87+
files = (
88+
8A6C34F51FE5187700C44E61 /* GCDWebServers.framework in Frameworks */,
89+
8A6C34F61FE5187700C44E61 /* FMDB.framework in Frameworks */,
90+
);
91+
runOnlyForDeploymentPostprocessing = 0;
92+
};
6293
E84AE5E81F3ADDE3003A9EB7 /* Frameworks */ = {
6394
isa = PBXFrameworksBuildPhase;
6495
buildActionMask = 2147483647;
@@ -74,6 +105,8 @@
74105
6EF7385C082F21BADF8F3BAF /* Frameworks */ = {
75106
isa = PBXGroup;
76107
children = (
108+
8A6C34F41FE5187700C44E61 /* FMDB.framework */,
109+
8A6C34F31FE5187700C44E61 /* GCDWebServers.framework */,
77110
E84AE6451F3DA3AA003A9EB7 /* libsqlite3.0.tbd */,
78111
F79B17EACE993F42581F0F1C /* libPods-YYDebugDatabase.a */,
79112
);
@@ -92,6 +125,7 @@
92125
E84AE5E21F3ADDE3003A9EB7 = {
93126
isa = PBXGroup;
94127
children = (
128+
8A6C34F21FE517CF00C44E61 /* Cartfile */,
95129
E84AE6091F3C39CD003A9EB7 /* DebugDatabase */,
96130
E84AE5ED1F3ADDE3003A9EB7 /* YYDebugDatabase */,
97131
E84AE5EC1F3ADDE3003A9EB7 /* Products */,
@@ -104,6 +138,7 @@
104138
isa = PBXGroup;
105139
children = (
106140
E84AE5EB1F3ADDE3003A9EB7 /* YYDebugDatabase.app */,
141+
8A6C34DF1FE516EF00C44E61 /* iOSDebugDatabase.framework */,
107142
);
108143
name = Products;
109144
sourceTree = "<group>";
@@ -137,6 +172,8 @@
137172
E84AE6091F3C39CD003A9EB7 /* DebugDatabase */ = {
138173
isa = PBXGroup;
139174
children = (
175+
8A6C34E11FE516EF00C44E61 /* iOSDebugDatabase.h */,
176+
8A6C34E21FE516EF00C44E61 /* Info.plist */,
140177
E8E069C81F40954500477064 /* Web.bundle */,
141178
E84AE6321F3C4210003A9EB7 /* DebugDatabaseManager.h */,
142179
E84AE6331F3C4210003A9EB7 /* DebugDatabaseManager.m */,
@@ -156,7 +193,42 @@
156193
};
157194
/* End PBXGroup section */
158195

196+
/* Begin PBXHeadersBuildPhase section */
197+
8A6C34DC1FE516EF00C44E61 /* Headers */ = {
198+
isa = PBXHeadersBuildPhase;
199+
buildActionMask = 2147483647;
200+
files = (
201+
8AE40E021FE51FEF00B5F6CA /* DebugDatabaseManager.h in Headers */,
202+
8AE40E031FE5200100B5F6CA /* DatabaseUtil.h in Headers */,
203+
8AE40E041FE5200400B5F6CA /* NSURL+scheme.h in Headers */,
204+
8AE40E051FE5200700B5F6CA /* NSMutableArray+safe.h in Headers */,
205+
8AE40E221FE5243A00B5F6CA /* iOSDebugDatabase.h in Headers */,
206+
8AE40E071FE5200C00B5F6CA /* NSString+json.h in Headers */,
207+
8AE40E061FE5200A00B5F6CA /* NSMutableDictionary+safe.h in Headers */,
208+
);
209+
runOnlyForDeploymentPostprocessing = 0;
210+
};
211+
/* End PBXHeadersBuildPhase section */
212+
159213
/* Begin PBXNativeTarget section */
214+
8A6C34DE1FE516EF00C44E61 /* iOSDebugDatabase-iOS */ = {
215+
isa = PBXNativeTarget;
216+
buildConfigurationList = 8A6C34EA1FE516EF00C44E61 /* Build configuration list for PBXNativeTarget "iOSDebugDatabase-iOS" */;
217+
buildPhases = (
218+
8A6C34DA1FE516EF00C44E61 /* Sources */,
219+
8A6C34DB1FE516EF00C44E61 /* Frameworks */,
220+
8A6C34DC1FE516EF00C44E61 /* Headers */,
221+
8A6C34DD1FE516EF00C44E61 /* Resources */,
222+
);
223+
buildRules = (
224+
);
225+
dependencies = (
226+
);
227+
name = "iOSDebugDatabase-iOS";
228+
productName = iOSDebugDatabase;
229+
productReference = 8A6C34DF1FE516EF00C44E61 /* iOSDebugDatabase.framework */;
230+
productType = "com.apple.product-type.framework";
231+
};
160232
E84AE5EA1F3ADDE3003A9EB7 /* YYDebugDatabase */ = {
161233
isa = PBXNativeTarget;
162234
buildConfigurationList = E84AE6021F3ADDE3003A9EB7 /* Build configuration list for PBXNativeTarget "YYDebugDatabase" */;
@@ -186,6 +258,11 @@
186258
LastUpgradeCheck = 0820;
187259
ORGANIZATIONNAME = wentian;
188260
TargetAttributes = {
261+
8A6C34DE1FE516EF00C44E61 = {
262+
CreatedOnToolsVersion = 9.2;
263+
DevelopmentTeam = 6M5WCVL2GQ;
264+
ProvisioningStyle = Automatic;
265+
};
189266
E84AE5EA1F3ADDE3003A9EB7 = {
190267
CreatedOnToolsVersion = 8.2.1;
191268
DevelopmentTeam = 6M5WCVL2GQ;
@@ -207,11 +284,20 @@
207284
projectRoot = "";
208285
targets = (
209286
E84AE5EA1F3ADDE3003A9EB7 /* YYDebugDatabase */,
287+
8A6C34DE1FE516EF00C44E61 /* iOSDebugDatabase-iOS */,
210288
);
211289
};
212290
/* End PBXProject section */
213291

214292
/* Begin PBXResourcesBuildPhase section */
293+
8A6C34DD1FE516EF00C44E61 /* Resources */ = {
294+
isa = PBXResourcesBuildPhase;
295+
buildActionMask = 2147483647;
296+
files = (
297+
8AE40E231FE5253900B5F6CA /* Web.bundle in Resources */,
298+
);
299+
runOnlyForDeploymentPostprocessing = 0;
300+
};
215301
E84AE5E91F3ADDE3003A9EB7 /* Resources */ = {
216302
isa = PBXResourcesBuildPhase;
217303
buildActionMask = 2147483647;
@@ -282,6 +368,19 @@
282368
/* End PBXShellScriptBuildPhase section */
283369

284370
/* Begin PBXSourcesBuildPhase section */
371+
8A6C34DA1FE516EF00C44E61 /* Sources */ = {
372+
isa = PBXSourcesBuildPhase;
373+
buildActionMask = 2147483647;
374+
files = (
375+
8A6C34EF1FE5175C00C44E61 /* NSMutableArray+safe.m in Sources */,
376+
8A6C34F11FE5176100C44E61 /* NSString+json.m in Sources */,
377+
8A6C34EE1FE5175900C44E61 /* NSURL+scheme.m in Sources */,
378+
8A6C34ED1FE5175400C44E61 /* DatabaseUtil.m in Sources */,
379+
8A6C34EC1FE5175100C44E61 /* DebugDatabaseManager.m in Sources */,
380+
8A6C34F01FE5175E00C44E61 /* NSMutableDictionary+safe.m in Sources */,
381+
);
382+
runOnlyForDeploymentPostprocessing = 0;
383+
};
285384
E84AE5E71F3ADDE3003A9EB7 /* Sources */ = {
286385
isa = PBXSourcesBuildPhase;
287386
buildActionMask = 2147483647;
@@ -320,6 +419,81 @@
320419
/* End PBXVariantGroup section */
321420

322421
/* Begin XCBuildConfiguration section */
422+
8A6C34E81FE516EF00C44E61 /* Debug */ = {
423+
isa = XCBuildConfiguration;
424+
buildSettings = {
425+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
426+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
427+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
428+
CLANG_WARN_COMMA = YES;
429+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
430+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
431+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
432+
CLANG_WARN_STRICT_PROTOTYPES = YES;
433+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
434+
CODE_SIGN_IDENTITY = "iPhone Developer";
435+
CODE_SIGN_STYLE = Automatic;
436+
CURRENT_PROJECT_VERSION = 1;
437+
DEFINES_MODULE = YES;
438+
DEVELOPMENT_TEAM = 6M5WCVL2GQ;
439+
DYLIB_COMPATIBILITY_VERSION = 1;
440+
DYLIB_CURRENT_VERSION = 1;
441+
DYLIB_INSTALL_NAME_BASE = "@rpath";
442+
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/Carthage/Build/iOS";
443+
GCC_C_LANGUAGE_STANDARD = gnu11;
444+
INFOPLIST_FILE = DebugDatabase/Info.plist;
445+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
446+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
447+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
448+
PRODUCT_BUNDLE_IDENTIFIER = com.KingOrient.PropertyLift.iOSDebugDatabase;
449+
PRODUCT_NAME = iOSDebugDatabase;
450+
SKIP_INSTALL = YES;
451+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
452+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
453+
SWIFT_VERSION = 4.0;
454+
TARGETED_DEVICE_FAMILY = "1,2";
455+
VERSIONING_SYSTEM = "apple-generic";
456+
VERSION_INFO_PREFIX = "";
457+
};
458+
name = Debug;
459+
};
460+
8A6C34E91FE516EF00C44E61 /* Release */ = {
461+
isa = XCBuildConfiguration;
462+
buildSettings = {
463+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
464+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
465+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
466+
CLANG_WARN_COMMA = YES;
467+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
468+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
469+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
470+
CLANG_WARN_STRICT_PROTOTYPES = YES;
471+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
472+
CODE_SIGN_IDENTITY = "iPhone Developer";
473+
CODE_SIGN_STYLE = Automatic;
474+
CURRENT_PROJECT_VERSION = 1;
475+
DEFINES_MODULE = YES;
476+
DEVELOPMENT_TEAM = 6M5WCVL2GQ;
477+
DYLIB_COMPATIBILITY_VERSION = 1;
478+
DYLIB_CURRENT_VERSION = 1;
479+
DYLIB_INSTALL_NAME_BASE = "@rpath";
480+
FRAMEWORK_SEARCH_PATHS = "$(PROJECT_DIR)/Carthage/Build/iOS";
481+
GCC_C_LANGUAGE_STANDARD = gnu11;
482+
INFOPLIST_FILE = DebugDatabase/Info.plist;
483+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
484+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
485+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
486+
PRODUCT_BUNDLE_IDENTIFIER = com.KingOrient.PropertyLift.iOSDebugDatabase;
487+
PRODUCT_NAME = iOSDebugDatabase;
488+
SKIP_INSTALL = YES;
489+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
490+
SWIFT_VERSION = 4.0;
491+
TARGETED_DEVICE_FAMILY = "1,2";
492+
VERSIONING_SYSTEM = "apple-generic";
493+
VERSION_INFO_PREFIX = "";
494+
};
495+
name = Release;
496+
};
323497
E84AE6001F3ADDE3003A9EB7 /* Debug */ = {
324498
isa = XCBuildConfiguration;
325499
buildSettings = {
@@ -415,6 +589,7 @@
415589
baseConfigurationReference = 22ADD98E9993641841D67B7F /* Pods-YYDebugDatabase.debug.xcconfig */;
416590
buildSettings = {
417591
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
592+
CODE_SIGN_IDENTITY = "iPhone Developer";
418593
DEVELOPMENT_TEAM = 6M5WCVL2GQ;
419594
INFOPLIST_FILE = YYDebugDatabase/Info.plist;
420595
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -428,6 +603,7 @@
428603
baseConfigurationReference = 50D992B943B292D10D75C6C2 /* Pods-YYDebugDatabase.release.xcconfig */;
429604
buildSettings = {
430605
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
606+
CODE_SIGN_IDENTITY = "iPhone Developer";
431607
DEVELOPMENT_TEAM = 6M5WCVL2GQ;
432608
INFOPLIST_FILE = YYDebugDatabase/Info.plist;
433609
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -439,6 +615,15 @@
439615
/* End XCBuildConfiguration section */
440616

441617
/* Begin XCConfigurationList section */
618+
8A6C34EA1FE516EF00C44E61 /* Build configuration list for PBXNativeTarget "iOSDebugDatabase-iOS" */ = {
619+
isa = XCConfigurationList;
620+
buildConfigurations = (
621+
8A6C34E81FE516EF00C44E61 /* Debug */,
622+
8A6C34E91FE516EF00C44E61 /* Release */,
623+
);
624+
defaultConfigurationIsVisible = 0;
625+
defaultConfigurationName = Release;
626+
};
442627
E84AE5E61F3ADDE3003A9EB7 /* Build configuration list for PBXProject "YYDebugDatabase" */ = {
443628
isa = XCConfigurationList;
444629
buildConfigurations = (

0 commit comments

Comments
 (0)