get Users up
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${PRODUCT_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>${CURRENT_PROJECT_VERSION}</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
||||
Generated
+8
@@ -0,0 +1,8 @@
|
||||
#include "ReachabilitySwift.xcconfig"
|
||||
CODE_SIGN_IDENTITY =
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/ReachabilitySwift" "${PODS_ROOT}/Headers/Public"
|
||||
OTHER_LDFLAGS = ${REACHABILITYSWIFT_OTHER_LDFLAGS}
|
||||
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
SKIP_INSTALL = YES
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
@interface PodsDummy_ReachabilitySwift : NSObject
|
||||
@end
|
||||
@implementation PodsDummy_ReachabilitySwift
|
||||
@end
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
#ifdef __OBJC__
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#endif
|
||||
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
FOUNDATION_EXPORT double ReachabilitySwiftVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char ReachabilitySwiftVersionString[];
|
||||
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
framework module ReachabilitySwift {
|
||||
umbrella header "ReachabilitySwift-umbrella.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
REACHABILITYSWIFT_OTHER_LDFLAGS = -framework "SystemConfiguration"
|
||||
Reference in New Issue
Block a user