mirror of https://github.com/grpc/grpc.git
parent
5e0efd95f7
commit
d1a8cc082a
61 changed files with 4451 additions and 0 deletions
@ -0,0 +1,18 @@ |
||||
# Xcode |
||||
# |
||||
build/ |
||||
*.pbxuser |
||||
!default.pbxuser |
||||
*.mode1v3 |
||||
!default.mode1v3 |
||||
*.mode2v3 |
||||
!default.mode2v3 |
||||
*.perspectivev3 |
||||
!default.perspectivev3 |
||||
xcuserdata |
||||
*.xccheckout |
||||
*.moved-aside |
||||
DerivedData |
||||
*.hmap |
||||
*.ipa |
||||
*.xcuserstate |
@ -0,0 +1,12 @@ |
||||
Pod::Spec.new do |s| |
||||
s.name = 'RxLibrary' |
||||
s.version = '0.0.1' |
||||
s.summary = 'Reactive Extensions library for iOS' |
||||
s.author = { |
||||
'Jorge Canizales' => 'jcanizales@google.com' |
||||
} |
||||
s.source_files = '*.{h,m}' |
||||
s.platform = :ios |
||||
s.ios.deployment_target = '6.0' |
||||
s.requires_arc = true |
||||
end |
@ -0,0 +1,12 @@ |
||||
source 'https://github.com/CocoaPods/Specs.git' |
||||
platform :ios, '8.0' |
||||
|
||||
pod 'RxLibrary', :path => "../../RxLibrary" |
||||
|
||||
target 'Sample' do |
||||
|
||||
end |
||||
|
||||
target 'SampleTests' do |
||||
|
||||
end |
@ -0,0 +1,14 @@ |
||||
PODS: |
||||
- RxLibrary (0.0.1) |
||||
|
||||
DEPENDENCIES: |
||||
- RxLibrary (from `../../RxLibrary`) |
||||
|
||||
EXTERNAL SOURCES: |
||||
RxLibrary: |
||||
:path: ../../RxLibrary |
||||
|
||||
SPEC CHECKSUMS: |
||||
RxLibrary: fc24868ee72616e8c4e58128b439811fdade0da4 |
||||
|
||||
COCOAPODS: 0.35.0 |
@ -0,0 +1 @@ |
||||
../../../../../../RxLibrary/GRXImmediateWriter.h |
@ -0,0 +1 @@ |
||||
../../../../../../RxLibrary/GRXWriteable.h |
@ -0,0 +1 @@ |
||||
../../../../../../RxLibrary/GRXWriter+Immediate.h |
@ -0,0 +1 @@ |
||||
../../../../../../RxLibrary/GRXWriter+Transformations.h |
@ -0,0 +1 @@ |
||||
../../../../../../RxLibrary/GRXWriter.h |
@ -0,0 +1 @@ |
||||
../../../../../../RxLibrary/NSEnumerator+GRXUtil.h |
@ -0,0 +1,12 @@ |
||||
Pod::Spec.new do |s| |
||||
s.name = 'RxLibrary' |
||||
s.version = '0.0.1' |
||||
s.summary = 'Reactive Extensions library for iOS' |
||||
s.author = { |
||||
'Jorge Canizales' => 'jcanizales@google.com' |
||||
} |
||||
s.source_files = '*.{h,m}' |
||||
s.platform = :ios |
||||
s.ios.deployment_target = '6.0' |
||||
s.requires_arc = true |
||||
end |
@ -0,0 +1,14 @@ |
||||
PODS: |
||||
- RxLibrary (0.0.1) |
||||
|
||||
DEPENDENCIES: |
||||
- RxLibrary (from `../../RxLibrary`) |
||||
|
||||
EXTERNAL SOURCES: |
||||
RxLibrary: |
||||
:path: ../../RxLibrary |
||||
|
||||
SPEC CHECKSUMS: |
||||
RxLibrary: fc24868ee72616e8c4e58128b439811fdade0da4 |
||||
|
||||
COCOAPODS: 0.35.0 |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,5 @@ |
||||
#include "Pods-RxLibrary.xcconfig" |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC |
||||
PODS_ROOT = ${SRCROOT} |
@ -0,0 +1,5 @@ |
||||
#import <Foundation/Foundation.h> |
||||
@interface PodsDummy_Pods_RxLibrary : NSObject |
||||
@end |
||||
@implementation PodsDummy_Pods_RxLibrary |
||||
@end |
@ -0,0 +1,5 @@ |
||||
#ifdef __OBJC__ |
||||
#import <UIKit/UIKit.h> |
||||
#endif |
||||
|
||||
#import "Pods-environment.h" |
@ -0,0 +1,5 @@ |
||||
#include "Pods-Sample-RxLibrary.xcconfig" |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC |
||||
PODS_ROOT = ${SRCROOT} |
@ -0,0 +1,5 @@ |
||||
#import <Foundation/Foundation.h> |
||||
@interface PodsDummy_Pods_Sample_RxLibrary : NSObject |
||||
@end |
||||
@implementation PodsDummy_Pods_Sample_RxLibrary |
||||
@end |
@ -0,0 +1,5 @@ |
||||
#ifdef __OBJC__ |
||||
#import <UIKit/UIKit.h> |
||||
#endif |
||||
|
||||
#import "Pods-Sample-environment.h" |
@ -0,0 +1,3 @@ |
||||
# Acknowledgements |
||||
This application makes use of the following third party libraries: |
||||
Generated by CocoaPods - http://cocoapods.org |
@ -0,0 +1,29 @@ |
||||
<?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>PreferenceSpecifiers</key> |
||||
<array> |
||||
<dict> |
||||
<key>FooterText</key> |
||||
<string>This application makes use of the following third party libraries:</string> |
||||
<key>Title</key> |
||||
<string>Acknowledgements</string> |
||||
<key>Type</key> |
||||
<string>PSGroupSpecifier</string> |
||||
</dict> |
||||
<dict> |
||||
<key>FooterText</key> |
||||
<string>Generated by CocoaPods - http://cocoapods.org</string> |
||||
<key>Title</key> |
||||
<string></string> |
||||
<key>Type</key> |
||||
<string>PSGroupSpecifier</string> |
||||
</dict> |
||||
</array> |
||||
<key>StringsTable</key> |
||||
<string>Acknowledgements</string> |
||||
<key>Title</key> |
||||
<string>Acknowledgements</string> |
||||
</dict> |
||||
</plist> |
@ -0,0 +1,5 @@ |
||||
#import <Foundation/Foundation.h> |
||||
@interface PodsDummy_Pods_Sample : NSObject |
||||
@end |
||||
@implementation PodsDummy_Pods_Sample |
||||
@end |
@ -0,0 +1,14 @@ |
||||
|
||||
// To check if a library is compiled with CocoaPods you
|
||||
// can use the `COCOAPODS` macro definition which is
|
||||
// defined in the xcconfigs so it is available in
|
||||
// headers also when they are imported in the client
|
||||
// project.
|
||||
|
||||
|
||||
// RxLibrary
|
||||
#define COCOAPODS_POD_AVAILABLE_RxLibrary |
||||
#define COCOAPODS_VERSION_MAJOR_RxLibrary 0 |
||||
#define COCOAPODS_VERSION_MINOR_RxLibrary 0 |
||||
#define COCOAPODS_VERSION_PATCH_RxLibrary 1 |
||||
|
@ -0,0 +1,74 @@ |
||||
#!/bin/sh |
||||
set -e |
||||
|
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
|
||||
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt |
||||
> "$RESOURCES_TO_COPY" |
||||
|
||||
install_resource() |
||||
{ |
||||
case $1 in |
||||
*.storyboard) |
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" |
||||
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" |
||||
;; |
||||
*.xib) |
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" |
||||
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" |
||||
;; |
||||
*.framework) |
||||
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
;; |
||||
*.xcdatamodel) |
||||
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" |
||||
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" |
||||
;; |
||||
*.xcdatamodeld) |
||||
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" |
||||
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" |
||||
;; |
||||
*.xcmappingmodel) |
||||
echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" |
||||
xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" |
||||
;; |
||||
*.xcassets) |
||||
;; |
||||
/*) |
||||
echo "$1" |
||||
echo "$1" >> "$RESOURCES_TO_COPY" |
||||
;; |
||||
*) |
||||
echo "${PODS_ROOT}/$1" |
||||
echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" |
||||
;; |
||||
esac |
||||
} |
||||
|
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
if [[ "${ACTION}" == "install" ]]; then |
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
fi |
||||
rm -f "$RESOURCES_TO_COPY" |
||||
|
||||
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] |
||||
then |
||||
case "${TARGETED_DEVICE_FAMILY}" in |
||||
1,2) |
||||
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" |
||||
;; |
||||
1) |
||||
TARGET_DEVICE_ARGS="--target-device iphone" |
||||
;; |
||||
2) |
||||
TARGET_DEVICE_ARGS="--target-device ipad" |
||||
;; |
||||
*) |
||||
TARGET_DEVICE_ARGS="--target-device mac" |
||||
;; |
||||
esac |
||||
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
fi |
@ -0,0 +1,6 @@ |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC -l"Pods-Sample-RxLibrary" |
||||
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) |
||||
PODS_ROOT = ${SRCROOT}/Pods |
@ -0,0 +1,6 @@ |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC -l"Pods-Sample-RxLibrary" |
||||
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) |
||||
PODS_ROOT = ${SRCROOT}/Pods |
@ -0,0 +1,5 @@ |
||||
#include "Pods-SampleTests-RxLibrary.xcconfig" |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC |
||||
PODS_ROOT = ${SRCROOT} |
@ -0,0 +1,5 @@ |
||||
#import <Foundation/Foundation.h> |
||||
@interface PodsDummy_Pods_SampleTests_RxLibrary : NSObject |
||||
@end |
||||
@implementation PodsDummy_Pods_SampleTests_RxLibrary |
||||
@end |
@ -0,0 +1,5 @@ |
||||
#ifdef __OBJC__ |
||||
#import <UIKit/UIKit.h> |
||||
#endif |
||||
|
||||
#import "Pods-SampleTests-environment.h" |
@ -0,0 +1,3 @@ |
||||
# Acknowledgements |
||||
This application makes use of the following third party libraries: |
||||
Generated by CocoaPods - http://cocoapods.org |
@ -0,0 +1,29 @@ |
||||
<?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>PreferenceSpecifiers</key> |
||||
<array> |
||||
<dict> |
||||
<key>FooterText</key> |
||||
<string>This application makes use of the following third party libraries:</string> |
||||
<key>Title</key> |
||||
<string>Acknowledgements</string> |
||||
<key>Type</key> |
||||
<string>PSGroupSpecifier</string> |
||||
</dict> |
||||
<dict> |
||||
<key>FooterText</key> |
||||
<string>Generated by CocoaPods - http://cocoapods.org</string> |
||||
<key>Title</key> |
||||
<string></string> |
||||
<key>Type</key> |
||||
<string>PSGroupSpecifier</string> |
||||
</dict> |
||||
</array> |
||||
<key>StringsTable</key> |
||||
<string>Acknowledgements</string> |
||||
<key>Title</key> |
||||
<string>Acknowledgements</string> |
||||
</dict> |
||||
</plist> |
@ -0,0 +1,5 @@ |
||||
#import <Foundation/Foundation.h> |
||||
@interface PodsDummy_Pods_SampleTests : NSObject |
||||
@end |
||||
@implementation PodsDummy_Pods_SampleTests |
||||
@end |
@ -0,0 +1,14 @@ |
||||
|
||||
// To check if a library is compiled with CocoaPods you
|
||||
// can use the `COCOAPODS` macro definition which is
|
||||
// defined in the xcconfigs so it is available in
|
||||
// headers also when they are imported in the client
|
||||
// project.
|
||||
|
||||
|
||||
// RxLibrary
|
||||
#define COCOAPODS_POD_AVAILABLE_RxLibrary |
||||
#define COCOAPODS_VERSION_MAJOR_RxLibrary 0 |
||||
#define COCOAPODS_VERSION_MINOR_RxLibrary 0 |
||||
#define COCOAPODS_VERSION_PATCH_RxLibrary 1 |
||||
|
@ -0,0 +1,74 @@ |
||||
#!/bin/sh |
||||
set -e |
||||
|
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
|
||||
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt |
||||
> "$RESOURCES_TO_COPY" |
||||
|
||||
install_resource() |
||||
{ |
||||
case $1 in |
||||
*.storyboard) |
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" |
||||
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" |
||||
;; |
||||
*.xib) |
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" |
||||
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" |
||||
;; |
||||
*.framework) |
||||
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
;; |
||||
*.xcdatamodel) |
||||
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" |
||||
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" |
||||
;; |
||||
*.xcdatamodeld) |
||||
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" |
||||
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" |
||||
;; |
||||
*.xcmappingmodel) |
||||
echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" |
||||
xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" |
||||
;; |
||||
*.xcassets) |
||||
;; |
||||
/*) |
||||
echo "$1" |
||||
echo "$1" >> "$RESOURCES_TO_COPY" |
||||
;; |
||||
*) |
||||
echo "${PODS_ROOT}/$1" |
||||
echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" |
||||
;; |
||||
esac |
||||
} |
||||
|
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
if [[ "${ACTION}" == "install" ]]; then |
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
fi |
||||
rm -f "$RESOURCES_TO_COPY" |
||||
|
||||
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] |
||||
then |
||||
case "${TARGETED_DEVICE_FAMILY}" in |
||||
1,2) |
||||
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" |
||||
;; |
||||
1) |
||||
TARGET_DEVICE_ARGS="--target-device iphone" |
||||
;; |
||||
2) |
||||
TARGET_DEVICE_ARGS="--target-device ipad" |
||||
;; |
||||
*) |
||||
TARGET_DEVICE_ARGS="--target-device mac" |
||||
;; |
||||
esac |
||||
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
fi |
@ -0,0 +1,6 @@ |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC -l"Pods-SampleTests-RxLibrary" |
||||
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) |
||||
PODS_ROOT = ${SRCROOT}/Pods |
@ -0,0 +1,6 @@ |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC -l"Pods-SampleTests-RxLibrary" |
||||
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) |
||||
PODS_ROOT = ${SRCROOT}/Pods |
@ -0,0 +1,3 @@ |
||||
# Acknowledgements |
||||
This application makes use of the following third party libraries: |
||||
Generated by CocoaPods - http://cocoapods.org |
@ -0,0 +1,29 @@ |
||||
<?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>PreferenceSpecifiers</key> |
||||
<array> |
||||
<dict> |
||||
<key>FooterText</key> |
||||
<string>This application makes use of the following third party libraries:</string> |
||||
<key>Title</key> |
||||
<string>Acknowledgements</string> |
||||
<key>Type</key> |
||||
<string>PSGroupSpecifier</string> |
||||
</dict> |
||||
<dict> |
||||
<key>FooterText</key> |
||||
<string>Generated by CocoaPods - http://cocoapods.org</string> |
||||
<key>Title</key> |
||||
<string></string> |
||||
<key>Type</key> |
||||
<string>PSGroupSpecifier</string> |
||||
</dict> |
||||
</array> |
||||
<key>StringsTable</key> |
||||
<string>Acknowledgements</string> |
||||
<key>Title</key> |
||||
<string>Acknowledgements</string> |
||||
</dict> |
||||
</plist> |
@ -0,0 +1,5 @@ |
||||
#import <Foundation/Foundation.h> |
||||
@interface PodsDummy_Pods : NSObject |
||||
@end |
||||
@implementation PodsDummy_Pods |
||||
@end |
@ -0,0 +1,14 @@ |
||||
|
||||
// To check if a library is compiled with CocoaPods you
|
||||
// can use the `COCOAPODS` macro definition which is
|
||||
// defined in the xcconfigs so it is available in
|
||||
// headers also when they are imported in the client
|
||||
// project.
|
||||
|
||||
|
||||
// RxLibrary
|
||||
#define COCOAPODS_POD_AVAILABLE_RxLibrary |
||||
#define COCOAPODS_VERSION_MAJOR_RxLibrary 0 |
||||
#define COCOAPODS_VERSION_MINOR_RxLibrary 0 |
||||
#define COCOAPODS_VERSION_PATCH_RxLibrary 1 |
||||
|
@ -0,0 +1,74 @@ |
||||
#!/bin/sh |
||||
set -e |
||||
|
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
|
||||
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt |
||||
> "$RESOURCES_TO_COPY" |
||||
|
||||
install_resource() |
||||
{ |
||||
case $1 in |
||||
*.storyboard) |
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" |
||||
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" |
||||
;; |
||||
*.xib) |
||||
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" |
||||
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" |
||||
;; |
||||
*.framework) |
||||
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" |
||||
;; |
||||
*.xcdatamodel) |
||||
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" |
||||
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" |
||||
;; |
||||
*.xcdatamodeld) |
||||
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" |
||||
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" |
||||
;; |
||||
*.xcmappingmodel) |
||||
echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" |
||||
xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" |
||||
;; |
||||
*.xcassets) |
||||
;; |
||||
/*) |
||||
echo "$1" |
||||
echo "$1" >> "$RESOURCES_TO_COPY" |
||||
;; |
||||
*) |
||||
echo "${PODS_ROOT}/$1" |
||||
echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" |
||||
;; |
||||
esac |
||||
} |
||||
|
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
if [[ "${ACTION}" == "install" ]]; then |
||||
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
fi |
||||
rm -f "$RESOURCES_TO_COPY" |
||||
|
||||
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] |
||||
then |
||||
case "${TARGETED_DEVICE_FAMILY}" in |
||||
1,2) |
||||
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" |
||||
;; |
||||
1) |
||||
TARGET_DEVICE_ARGS="--target-device iphone" |
||||
;; |
||||
2) |
||||
TARGET_DEVICE_ARGS="--target-device ipad" |
||||
;; |
||||
*) |
||||
TARGET_DEVICE_ARGS="--target-device mac" |
||||
;; |
||||
esac |
||||
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" |
||||
fi |
@ -0,0 +1,6 @@ |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC -l"Pods-RxLibrary" |
||||
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) |
||||
PODS_ROOT = ${SRCROOT}/Pods |
@ -0,0 +1,6 @@ |
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 |
||||
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RxLibrary" |
||||
OTHER_LDFLAGS = -ObjC -l"Pods-RxLibrary" |
||||
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) |
||||
PODS_ROOT = ${SRCROOT}/Pods |
@ -0,0 +1,2 @@ |
||||
When contributing changes to this sample, use Cocoapods to manage the workspace |
||||
file and everything under the Pods directory. |
@ -0,0 +1,955 @@ |
||||
<?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>archiveVersion</key> |
||||
<string>1</string> |
||||
<key>classes</key> |
||||
<dict/> |
||||
<key>objectVersion</key> |
||||
<string>46</string> |
||||
<key>objects</key> |
||||
<dict> |
||||
<key>04554623324BE4A838846086</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array/> |
||||
<key>inputPaths</key> |
||||
<array/> |
||||
<key>isa</key> |
||||
<string>PBXShellScriptBuildPhase</string> |
||||
<key>name</key> |
||||
<string>Copy Pods Resources</string> |
||||
<key>outputPaths</key> |
||||
<array/> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
<key>shellPath</key> |
||||
<string>/bin/sh</string> |
||||
<key>shellScript</key> |
||||
<string>"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh" |
||||
</string> |
||||
<key>showEnvVarsInLog</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>2DC7B7C4C0410F43B9621631</key> |
||||
<dict> |
||||
<key>explicitFileType</key> |
||||
<string>archive.ar</string> |
||||
<key>includeInIndex</key> |
||||
<string>0</string> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>path</key> |
||||
<string>libPods.a</string> |
||||
<key>sourceTree</key> |
||||
<string>BUILT_PRODUCTS_DIR</string> |
||||
</dict> |
||||
<key>41F7486D8F66994B0BFB84AF</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array/> |
||||
<key>inputPaths</key> |
||||
<array/> |
||||
<key>isa</key> |
||||
<string>PBXShellScriptBuildPhase</string> |
||||
<key>name</key> |
||||
<string>Check Pods Manifest.lock</string> |
||||
<key>outputPaths</key> |
||||
<array/> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
<key>shellPath</key> |
||||
<string>/bin/sh</string> |
||||
<key>shellScript</key> |
||||
<string>diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null |
||||
if [[ $? != 0 ]] ; then |
||||
cat << EOM |
||||
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. |
||||
EOM |
||||
exit 1 |
||||
fi |
||||
</string> |
||||
<key>showEnvVarsInLog</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2611A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A26C1A9322E20015FC5C</string> |
||||
<string>6369A2861A9322E20015FC5C</string> |
||||
<string>6369A26B1A9322E20015FC5C</string> |
||||
<string>AB3331C9AE6488E61B2B094E</string> |
||||
<string>C4C2C5219053E079C9EFB930</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2621A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>attributes</key> |
||||
<dict> |
||||
<key>LastUpgradeCheck</key> |
||||
<string>0610</string> |
||||
<key>ORGANIZATIONNAME</key> |
||||
<string>gRPC</string> |
||||
<key>TargetAttributes</key> |
||||
<dict> |
||||
<key>6369A2691A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>CreatedOnToolsVersion</key> |
||||
<string>6.1.1</string> |
||||
</dict> |
||||
<key>6369A2821A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>CreatedOnToolsVersion</key> |
||||
<string>6.1.1</string> |
||||
<key>TestTargetID</key> |
||||
<string>6369A2691A9322E20015FC5C</string> |
||||
</dict> |
||||
</dict> |
||||
</dict> |
||||
<key>buildConfigurationList</key> |
||||
<string>6369A2651A9322E20015FC5C</string> |
||||
<key>compatibilityVersion</key> |
||||
<string>Xcode 3.2</string> |
||||
<key>developmentRegion</key> |
||||
<string>English</string> |
||||
<key>hasScannedForEncodings</key> |
||||
<string>0</string> |
||||
<key>isa</key> |
||||
<string>PBXProject</string> |
||||
<key>knownRegions</key> |
||||
<array> |
||||
<string>en</string> |
||||
<string>Base</string> |
||||
</array> |
||||
<key>mainGroup</key> |
||||
<string>6369A2611A9322E20015FC5C</string> |
||||
<key>productRefGroup</key> |
||||
<string>6369A26B1A9322E20015FC5C</string> |
||||
<key>projectDirPath</key> |
||||
<string></string> |
||||
<key>projectReferences</key> |
||||
<array/> |
||||
<key>projectRoot</key> |
||||
<string></string> |
||||
<key>targets</key> |
||||
<array> |
||||
<string>6369A2691A9322E20015FC5C</string> |
||||
<string>6369A2821A9322E20015FC5C</string> |
||||
</array> |
||||
</dict> |
||||
<key>6369A2651A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildConfigurations</key> |
||||
<array> |
||||
<string>6369A28B1A9322E20015FC5C</string> |
||||
<string>6369A28C1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>defaultConfigurationIsVisible</key> |
||||
<string>0</string> |
||||
<key>defaultConfigurationName</key> |
||||
<string>Release</string> |
||||
<key>isa</key> |
||||
<string>XCConfigurationList</string> |
||||
</dict> |
||||
<key>6369A2661A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array> |
||||
<string>6369A2761A9322E20015FC5C</string> |
||||
<string>6369A2731A9322E20015FC5C</string> |
||||
<string>6369A2701A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXSourcesBuildPhase</string> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2671A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array> |
||||
<string>FC81FE63CA655031F3524EC0</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXFrameworksBuildPhase</string> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2681A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array> |
||||
<string>6369A2791A9322E20015FC5C</string> |
||||
<string>6369A27E1A9322E20015FC5C</string> |
||||
<string>6369A27B1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXResourcesBuildPhase</string> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2691A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildConfigurationList</key> |
||||
<string>6369A28D1A9322E20015FC5C</string> |
||||
<key>buildPhases</key> |
||||
<array> |
||||
<string>41F7486D8F66994B0BFB84AF</string> |
||||
<string>6369A2661A9322E20015FC5C</string> |
||||
<string>6369A2671A9322E20015FC5C</string> |
||||
<string>6369A2681A9322E20015FC5C</string> |
||||
<string>04554623324BE4A838846086</string> |
||||
</array> |
||||
<key>buildRules</key> |
||||
<array/> |
||||
<key>dependencies</key> |
||||
<array/> |
||||
<key>isa</key> |
||||
<string>PBXNativeTarget</string> |
||||
<key>name</key> |
||||
<string>Sample</string> |
||||
<key>productName</key> |
||||
<string>Sample</string> |
||||
<key>productReference</key> |
||||
<string>6369A26A1A9322E20015FC5C</string> |
||||
<key>productType</key> |
||||
<string>com.apple.product-type.application</string> |
||||
</dict> |
||||
<key>6369A26A1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>explicitFileType</key> |
||||
<string>wrapper.application</string> |
||||
<key>includeInIndex</key> |
||||
<string>0</string> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>path</key> |
||||
<string>Sample.app</string> |
||||
<key>sourceTree</key> |
||||
<string>BUILT_PRODUCTS_DIR</string> |
||||
</dict> |
||||
<key>6369A26B1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A26A1A9322E20015FC5C</string> |
||||
<string>6369A2831A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>name</key> |
||||
<string>Products</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A26C1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A2711A9322E20015FC5C</string> |
||||
<string>6369A2721A9322E20015FC5C</string> |
||||
<string>6369A2741A9322E20015FC5C</string> |
||||
<string>6369A2751A9322E20015FC5C</string> |
||||
<string>6369A2771A9322E20015FC5C</string> |
||||
<string>6369A27A1A9322E20015FC5C</string> |
||||
<string>6369A27C1A9322E20015FC5C</string> |
||||
<string>6369A26D1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>path</key> |
||||
<string>Sample</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A26D1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A26E1A9322E20015FC5C</string> |
||||
<string>6369A26F1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>name</key> |
||||
<string>Supporting Files</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A26E1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>text.plist.xml</string> |
||||
<key>path</key> |
||||
<string>Info.plist</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A26F1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>sourcecode.c.objc</string> |
||||
<key>path</key> |
||||
<string>main.m</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2701A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A26F1A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A2711A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>sourcecode.c.h</string> |
||||
<key>path</key> |
||||
<string>AppDelegate.h</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2721A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>sourcecode.c.objc</string> |
||||
<key>path</key> |
||||
<string>AppDelegate.m</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2731A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A2721A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A2741A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>sourcecode.c.h</string> |
||||
<key>path</key> |
||||
<string>ViewController.h</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2751A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>sourcecode.c.objc</string> |
||||
<key>path</key> |
||||
<string>ViewController.m</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2761A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A2751A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A2771A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A2781A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXVariantGroup</string> |
||||
<key>name</key> |
||||
<string>Main.storyboard</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2781A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>file.storyboard</string> |
||||
<key>name</key> |
||||
<string>Base</string> |
||||
<key>path</key> |
||||
<string>Base.lproj/Main.storyboard</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2791A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A2771A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A27A1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>folder.assetcatalog</string> |
||||
<key>path</key> |
||||
<string>Images.xcassets</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A27B1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A27A1A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A27C1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A27D1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXVariantGroup</string> |
||||
<key>name</key> |
||||
<string>LaunchScreen.xib</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A27D1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>file.xib</string> |
||||
<key>name</key> |
||||
<string>Base</string> |
||||
<key>path</key> |
||||
<string>Base.lproj/LaunchScreen.xib</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A27E1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A27C1A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A27F1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array> |
||||
<string>6369A28A1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXSourcesBuildPhase</string> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2801A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array/> |
||||
<key>isa</key> |
||||
<string>PBXFrameworksBuildPhase</string> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2811A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildActionMask</key> |
||||
<string>2147483647</string> |
||||
<key>files</key> |
||||
<array/> |
||||
<key>isa</key> |
||||
<string>PBXResourcesBuildPhase</string> |
||||
<key>runOnlyForDeploymentPostprocessing</key> |
||||
<string>0</string> |
||||
</dict> |
||||
<key>6369A2821A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildConfigurationList</key> |
||||
<string>6369A2901A9322E20015FC5C</string> |
||||
<key>buildPhases</key> |
||||
<array> |
||||
<string>6369A27F1A9322E20015FC5C</string> |
||||
<string>6369A2801A9322E20015FC5C</string> |
||||
<string>6369A2811A9322E20015FC5C</string> |
||||
</array> |
||||
<key>buildRules</key> |
||||
<array/> |
||||
<key>dependencies</key> |
||||
<array> |
||||
<string>6369A2851A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXNativeTarget</string> |
||||
<key>name</key> |
||||
<string>SampleTests</string> |
||||
<key>productName</key> |
||||
<string>SampleTests</string> |
||||
<key>productReference</key> |
||||
<string>6369A2831A9322E20015FC5C</string> |
||||
<key>productType</key> |
||||
<string>com.apple.product-type.bundle.unit-test</string> |
||||
</dict> |
||||
<key>6369A2831A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>explicitFileType</key> |
||||
<string>wrapper.cfbundle</string> |
||||
<key>includeInIndex</key> |
||||
<string>0</string> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>path</key> |
||||
<string>SampleTests.xctest</string> |
||||
<key>sourceTree</key> |
||||
<string>BUILT_PRODUCTS_DIR</string> |
||||
</dict> |
||||
<key>6369A2841A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>containerPortal</key> |
||||
<string>6369A2621A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXContainerItemProxy</string> |
||||
<key>proxyType</key> |
||||
<string>1</string> |
||||
<key>remoteGlobalIDString</key> |
||||
<string>6369A2691A9322E20015FC5C</string> |
||||
<key>remoteInfo</key> |
||||
<string>Sample</string> |
||||
</dict> |
||||
<key>6369A2851A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXTargetDependency</string> |
||||
<key>target</key> |
||||
<string>6369A2691A9322E20015FC5C</string> |
||||
<key>targetProxy</key> |
||||
<string>6369A2841A9322E20015FC5C</string> |
||||
</dict> |
||||
<key>6369A2861A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A2891A9322E20015FC5C</string> |
||||
<string>6369A2871A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>path</key> |
||||
<string>SampleTests</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2871A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>6369A2881A9322E20015FC5C</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>name</key> |
||||
<string>Supporting Files</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2881A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>text.plist.xml</string> |
||||
<key>path</key> |
||||
<string>Info.plist</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A2891A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>sourcecode.c.objc</string> |
||||
<key>path</key> |
||||
<string>SampleTests.m</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>6369A28A1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>6369A2891A9322E20015FC5C</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
<key>6369A28B1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildSettings</key> |
||||
<dict> |
||||
<key>ALWAYS_SEARCH_USER_PATHS</key> |
||||
<string>NO</string> |
||||
<key>CLANG_CXX_LANGUAGE_STANDARD</key> |
||||
<string>gnu++0x</string> |
||||
<key>CLANG_CXX_LIBRARY</key> |
||||
<string>libc++</string> |
||||
<key>CLANG_ENABLE_MODULES</key> |
||||
<string>YES</string> |
||||
<key>CLANG_ENABLE_OBJC_ARC</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_BOOL_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_CONSTANT_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key> |
||||
<string>YES_ERROR</string> |
||||
<key>CLANG_WARN_EMPTY_BODY</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_ENUM_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_INT_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_OBJC_ROOT_CLASS</key> |
||||
<string>YES_ERROR</string> |
||||
<key>CLANG_WARN_UNREACHABLE_CODE</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key> |
||||
<string>YES</string> |
||||
<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key> |
||||
<string>iPhone Developer</string> |
||||
<key>COPY_PHASE_STRIP</key> |
||||
<string>NO</string> |
||||
<key>ENABLE_STRICT_OBJC_MSGSEND</key> |
||||
<string>YES</string> |
||||
<key>GCC_C_LANGUAGE_STANDARD</key> |
||||
<string>gnu99</string> |
||||
<key>GCC_DYNAMIC_NO_PIC</key> |
||||
<string>NO</string> |
||||
<key>GCC_OPTIMIZATION_LEVEL</key> |
||||
<string>0</string> |
||||
<key>GCC_PREPROCESSOR_DEFINITIONS</key> |
||||
<array> |
||||
<string>DEBUG=1</string> |
||||
<string>$(inherited)</string> |
||||
</array> |
||||
<key>GCC_SYMBOLS_PRIVATE_EXTERN</key> |
||||
<string>NO</string> |
||||
<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>GCC_WARN_ABOUT_RETURN_TYPE</key> |
||||
<string>YES_ERROR</string> |
||||
<key>GCC_WARN_UNDECLARED_SELECTOR</key> |
||||
<string>YES</string> |
||||
<key>GCC_WARN_UNINITIALIZED_AUTOS</key> |
||||
<string>YES_AGGRESSIVE</string> |
||||
<key>GCC_WARN_UNUSED_FUNCTION</key> |
||||
<string>YES</string> |
||||
<key>GCC_WARN_UNUSED_VARIABLE</key> |
||||
<string>YES</string> |
||||
<key>IPHONEOS_DEPLOYMENT_TARGET</key> |
||||
<string>8.1</string> |
||||
<key>MTL_ENABLE_DEBUG_INFO</key> |
||||
<string>YES</string> |
||||
<key>ONLY_ACTIVE_ARCH</key> |
||||
<string>YES</string> |
||||
<key>SDKROOT</key> |
||||
<string>iphoneos</string> |
||||
<key>TARGETED_DEVICE_FAMILY</key> |
||||
<string>1,2</string> |
||||
</dict> |
||||
<key>isa</key> |
||||
<string>XCBuildConfiguration</string> |
||||
<key>name</key> |
||||
<string>Debug</string> |
||||
</dict> |
||||
<key>6369A28C1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildSettings</key> |
||||
<dict> |
||||
<key>ALWAYS_SEARCH_USER_PATHS</key> |
||||
<string>NO</string> |
||||
<key>CLANG_CXX_LANGUAGE_STANDARD</key> |
||||
<string>gnu++0x</string> |
||||
<key>CLANG_CXX_LIBRARY</key> |
||||
<string>libc++</string> |
||||
<key>CLANG_ENABLE_MODULES</key> |
||||
<string>YES</string> |
||||
<key>CLANG_ENABLE_OBJC_ARC</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_BOOL_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_CONSTANT_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key> |
||||
<string>YES_ERROR</string> |
||||
<key>CLANG_WARN_EMPTY_BODY</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_ENUM_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_INT_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN_OBJC_ROOT_CLASS</key> |
||||
<string>YES_ERROR</string> |
||||
<key>CLANG_WARN_UNREACHABLE_CODE</key> |
||||
<string>YES</string> |
||||
<key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key> |
||||
<string>YES</string> |
||||
<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key> |
||||
<string>iPhone Developer</string> |
||||
<key>COPY_PHASE_STRIP</key> |
||||
<string>YES</string> |
||||
<key>ENABLE_NS_ASSERTIONS</key> |
||||
<string>NO</string> |
||||
<key>ENABLE_STRICT_OBJC_MSGSEND</key> |
||||
<string>YES</string> |
||||
<key>GCC_C_LANGUAGE_STANDARD</key> |
||||
<string>gnu99</string> |
||||
<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key> |
||||
<string>YES</string> |
||||
<key>GCC_WARN_ABOUT_RETURN_TYPE</key> |
||||
<string>YES_ERROR</string> |
||||
<key>GCC_WARN_UNDECLARED_SELECTOR</key> |
||||
<string>YES</string> |
||||
<key>GCC_WARN_UNINITIALIZED_AUTOS</key> |
||||
<string>YES_AGGRESSIVE</string> |
||||
<key>GCC_WARN_UNUSED_FUNCTION</key> |
||||
<string>YES</string> |
||||
<key>GCC_WARN_UNUSED_VARIABLE</key> |
||||
<string>YES</string> |
||||
<key>IPHONEOS_DEPLOYMENT_TARGET</key> |
||||
<string>8.1</string> |
||||
<key>MTL_ENABLE_DEBUG_INFO</key> |
||||
<string>NO</string> |
||||
<key>SDKROOT</key> |
||||
<string>iphoneos</string> |
||||
<key>TARGETED_DEVICE_FAMILY</key> |
||||
<string>1,2</string> |
||||
<key>VALIDATE_PRODUCT</key> |
||||
<string>YES</string> |
||||
</dict> |
||||
<key>isa</key> |
||||
<string>XCBuildConfiguration</string> |
||||
<key>name</key> |
||||
<string>Release</string> |
||||
</dict> |
||||
<key>6369A28D1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildConfigurations</key> |
||||
<array> |
||||
<string>6369A28E1A9322E20015FC5C</string> |
||||
<string>6369A28F1A9322E20015FC5C</string> |
||||
</array> |
||||
<key>defaultConfigurationIsVisible</key> |
||||
<string>0</string> |
||||
<key>isa</key> |
||||
<string>XCConfigurationList</string> |
||||
</dict> |
||||
<key>6369A28E1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>baseConfigurationReference</key> |
||||
<string>AC29DD6FCDF962F519FEBB0D</string> |
||||
<key>buildSettings</key> |
||||
<dict> |
||||
<key>ASSETCATALOG_COMPILER_APPICON_NAME</key> |
||||
<string>AppIcon</string> |
||||
<key>INFOPLIST_FILE</key> |
||||
<string>Sample/Info.plist</string> |
||||
<key>LD_RUNPATH_SEARCH_PATHS</key> |
||||
<string>$(inherited) @executable_path/Frameworks</string> |
||||
<key>PRODUCT_NAME</key> |
||||
<string>$(TARGET_NAME)</string> |
||||
</dict> |
||||
<key>isa</key> |
||||
<string>XCBuildConfiguration</string> |
||||
<key>name</key> |
||||
<string>Debug</string> |
||||
</dict> |
||||
<key>6369A28F1A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>baseConfigurationReference</key> |
||||
<string>C68330F8D451CC6ACEABA09F</string> |
||||
<key>buildSettings</key> |
||||
<dict> |
||||
<key>ASSETCATALOG_COMPILER_APPICON_NAME</key> |
||||
<string>AppIcon</string> |
||||
<key>INFOPLIST_FILE</key> |
||||
<string>Sample/Info.plist</string> |
||||
<key>LD_RUNPATH_SEARCH_PATHS</key> |
||||
<string>$(inherited) @executable_path/Frameworks</string> |
||||
<key>PRODUCT_NAME</key> |
||||
<string>$(TARGET_NAME)</string> |
||||
</dict> |
||||
<key>isa</key> |
||||
<string>XCBuildConfiguration</string> |
||||
<key>name</key> |
||||
<string>Release</string> |
||||
</dict> |
||||
<key>6369A2901A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildConfigurations</key> |
||||
<array> |
||||
<string>6369A2911A9322E20015FC5C</string> |
||||
<string>6369A2921A9322E20015FC5C</string> |
||||
</array> |
||||
<key>defaultConfigurationIsVisible</key> |
||||
<string>0</string> |
||||
<key>isa</key> |
||||
<string>XCConfigurationList</string> |
||||
</dict> |
||||
<key>6369A2911A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildSettings</key> |
||||
<dict> |
||||
<key>BUNDLE_LOADER</key> |
||||
<string>$(TEST_HOST)</string> |
||||
<key>FRAMEWORK_SEARCH_PATHS</key> |
||||
<array> |
||||
<string>$(SDKROOT)/Developer/Library/Frameworks</string> |
||||
<string>$(inherited)</string> |
||||
</array> |
||||
<key>GCC_PREPROCESSOR_DEFINITIONS</key> |
||||
<array> |
||||
<string>DEBUG=1</string> |
||||
<string>$(inherited)</string> |
||||
</array> |
||||
<key>INFOPLIST_FILE</key> |
||||
<string>SampleTests/Info.plist</string> |
||||
<key>LD_RUNPATH_SEARCH_PATHS</key> |
||||
<string>$(inherited) @executable_path/Frameworks @loader_path/Frameworks</string> |
||||
<key>PRODUCT_NAME</key> |
||||
<string>$(TARGET_NAME)</string> |
||||
<key>TEST_HOST</key> |
||||
<string>$(BUILT_PRODUCTS_DIR)/Sample.app/Sample</string> |
||||
</dict> |
||||
<key>isa</key> |
||||
<string>XCBuildConfiguration</string> |
||||
<key>name</key> |
||||
<string>Debug</string> |
||||
</dict> |
||||
<key>6369A2921A9322E20015FC5C</key> |
||||
<dict> |
||||
<key>buildSettings</key> |
||||
<dict> |
||||
<key>BUNDLE_LOADER</key> |
||||
<string>$(TEST_HOST)</string> |
||||
<key>FRAMEWORK_SEARCH_PATHS</key> |
||||
<array> |
||||
<string>$(SDKROOT)/Developer/Library/Frameworks</string> |
||||
<string>$(inherited)</string> |
||||
</array> |
||||
<key>INFOPLIST_FILE</key> |
||||
<string>SampleTests/Info.plist</string> |
||||
<key>LD_RUNPATH_SEARCH_PATHS</key> |
||||
<string>$(inherited) @executable_path/Frameworks @loader_path/Frameworks</string> |
||||
<key>PRODUCT_NAME</key> |
||||
<string>$(TARGET_NAME)</string> |
||||
<key>TEST_HOST</key> |
||||
<string>$(BUILT_PRODUCTS_DIR)/Sample.app/Sample</string> |
||||
</dict> |
||||
<key>isa</key> |
||||
<string>XCBuildConfiguration</string> |
||||
<key>name</key> |
||||
<string>Release</string> |
||||
</dict> |
||||
<key>AB3331C9AE6488E61B2B094E</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>AC29DD6FCDF962F519FEBB0D</string> |
||||
<string>C68330F8D451CC6ACEABA09F</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>name</key> |
||||
<string>Pods</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>AC29DD6FCDF962F519FEBB0D</key> |
||||
<dict> |
||||
<key>includeInIndex</key> |
||||
<string>1</string> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>text.xcconfig</string> |
||||
<key>name</key> |
||||
<string>Pods.debug.xcconfig</string> |
||||
<key>path</key> |
||||
<string>Pods/Target Support Files/Pods/Pods.debug.xcconfig</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>C4C2C5219053E079C9EFB930</key> |
||||
<dict> |
||||
<key>children</key> |
||||
<array> |
||||
<string>2DC7B7C4C0410F43B9621631</string> |
||||
</array> |
||||
<key>isa</key> |
||||
<string>PBXGroup</string> |
||||
<key>name</key> |
||||
<string>Frameworks</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>C68330F8D451CC6ACEABA09F</key> |
||||
<dict> |
||||
<key>includeInIndex</key> |
||||
<string>1</string> |
||||
<key>isa</key> |
||||
<string>PBXFileReference</string> |
||||
<key>lastKnownFileType</key> |
||||
<string>text.xcconfig</string> |
||||
<key>name</key> |
||||
<string>Pods.release.xcconfig</string> |
||||
<key>path</key> |
||||
<string>Pods/Target Support Files/Pods/Pods.release.xcconfig</string> |
||||
<key>sourceTree</key> |
||||
<string><group></string> |
||||
</dict> |
||||
<key>FC81FE63CA655031F3524EC0</key> |
||||
<dict> |
||||
<key>fileRef</key> |
||||
<string>2DC7B7C4C0410F43B9621631</string> |
||||
<key>isa</key> |
||||
<string>PBXBuildFile</string> |
||||
</dict> |
||||
</dict> |
||||
<key>rootObject</key> |
||||
<string>6369A2621A9322E20015FC5C</string> |
||||
</dict> |
||||
</plist> |
@ -0,0 +1,7 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<Workspace |
||||
version = "1.0"> |
||||
<FileRef |
||||
location = "self:Sample.xcodeproj"> |
||||
</FileRef> |
||||
</Workspace> |
@ -0,0 +1,10 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<Workspace |
||||
version = "1.0"> |
||||
<FileRef |
||||
location = "group:Sample.xcodeproj"> |
||||
</FileRef> |
||||
<FileRef |
||||
location = "group:Pods/Pods.xcodeproj"> |
||||
</FileRef> |
||||
</Workspace> |
@ -0,0 +1,17 @@ |
||||
//
|
||||
// AppDelegate.h
|
||||
// Sample
|
||||
//
|
||||
// Created by Jorge Canizalez Diaz on 2/16/15.
|
||||
// Copyright (c) 2015 gRPC. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h> |
||||
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate> |
||||
|
||||
@property (strong, nonatomic) UIWindow *window; |
||||
|
||||
|
||||
@end |
||||
|
@ -0,0 +1,45 @@ |
||||
// |
||||
// AppDelegate.m |
||||
// Sample |
||||
// |
||||
// Created by Jorge Canizalez Diaz on 2/16/15. |
||||
// Copyright (c) 2015 gRPC. All rights reserved. |
||||
// |
||||
|
||||
#import "AppDelegate.h" |
||||
|
||||
@interface AppDelegate () |
||||
|
||||
@end |
||||
|
||||
@implementation AppDelegate |
||||
|
||||
|
||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { |
||||
// Override point for customization after application launch. |
||||
return YES; |
||||
} |
||||
|
||||
- (void)applicationWillResignActive:(UIApplication *)application { |
||||
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. |
||||
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. |
||||
} |
||||
|
||||
- (void)applicationDidEnterBackground:(UIApplication *)application { |
||||
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. |
||||
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. |
||||
} |
||||
|
||||
- (void)applicationWillEnterForeground:(UIApplication *)application { |
||||
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. |
||||
} |
||||
|
||||
- (void)applicationDidBecomeActive:(UIApplication *)application { |
||||
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. |
||||
} |
||||
|
||||
- (void)applicationWillTerminate:(UIApplication *)application { |
||||
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. |
||||
} |
||||
|
||||
@end |
@ -0,0 +1,41 @@ |
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6214" systemVersion="14A314h" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6207"/> |
||||
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/> |
||||
</dependencies> |
||||
<objects> |
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/> |
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> |
||||
<view contentMode="scaleToFill" id="iN0-l3-epB"> |
||||
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<subviews> |
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text=" Copyright (c) 2015 gRPC. All rights reserved." textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye"> |
||||
<rect key="frame" x="20" y="439" width="441" height="21"/> |
||||
<fontDescription key="fontDescription" type="system" pointSize="17"/> |
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/> |
||||
<nil key="highlightedColor"/> |
||||
</label> |
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sample" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX"> |
||||
<rect key="frame" x="20" y="140" width="441" height="43"/> |
||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/> |
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/> |
||||
<nil key="highlightedColor"/> |
||||
</label> |
||||
</subviews> |
||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> |
||||
<constraints> |
||||
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/> |
||||
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/> |
||||
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/> |
||||
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/> |
||||
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/> |
||||
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/> |
||||
</constraints> |
||||
<nil key="simulatedStatusBarMetrics"/> |
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/> |
||||
<point key="canvasLocation" x="548" y="455"/> |
||||
</view> |
||||
</objects> |
||||
</document> |
@ -0,0 +1,25 @@ |
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6211" systemVersion="14A298i" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r"> |
||||
<dependencies> |
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6204"/> |
||||
</dependencies> |
||||
<scenes> |
||||
<!--View Controller--> |
||||
<scene sceneID="tne-QT-ifu"> |
||||
<objects> |
||||
<viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="" sceneMemberID="viewController"> |
||||
<layoutGuides> |
||||
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/> |
||||
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/> |
||||
</layoutGuides> |
||||
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC"> |
||||
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/> |
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> |
||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> |
||||
</view> |
||||
</viewController> |
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/> |
||||
</objects> |
||||
</scene> |
||||
</scenes> |
||||
</document> |
@ -0,0 +1,68 @@ |
||||
{ |
||||
"images" : [ |
||||
{ |
||||
"idiom" : "iphone", |
||||
"size" : "29x29", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "iphone", |
||||
"size" : "29x29", |
||||
"scale" : "3x" |
||||
}, |
||||
{ |
||||
"idiom" : "iphone", |
||||
"size" : "40x40", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "iphone", |
||||
"size" : "40x40", |
||||
"scale" : "3x" |
||||
}, |
||||
{ |
||||
"idiom" : "iphone", |
||||
"size" : "60x60", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "iphone", |
||||
"size" : "60x60", |
||||
"scale" : "3x" |
||||
}, |
||||
{ |
||||
"idiom" : "ipad", |
||||
"size" : "29x29", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "ipad", |
||||
"size" : "29x29", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "ipad", |
||||
"size" : "40x40", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "ipad", |
||||
"size" : "40x40", |
||||
"scale" : "2x" |
||||
}, |
||||
{ |
||||
"idiom" : "ipad", |
||||
"size" : "76x76", |
||||
"scale" : "1x" |
||||
}, |
||||
{ |
||||
"idiom" : "ipad", |
||||
"size" : "76x76", |
||||
"scale" : "2x" |
||||
} |
||||
], |
||||
"info" : { |
||||
"version" : 1, |
||||
"author" : "xcode" |
||||
} |
||||
} |
@ -0,0 +1,47 @@ |
||||
<?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.grpc.$(PRODUCT_NAME:rfc1034identifier)</string> |
||||
<key>CFBundleInfoDictionaryVersion</key> |
||||
<string>6.0</string> |
||||
<key>CFBundleName</key> |
||||
<string>$(PRODUCT_NAME)</string> |
||||
<key>CFBundlePackageType</key> |
||||
<string>APPL</string> |
||||
<key>CFBundleShortVersionString</key> |
||||
<string>1.0</string> |
||||
<key>CFBundleSignature</key> |
||||
<string>????</string> |
||||
<key>CFBundleVersion</key> |
||||
<string>1</string> |
||||
<key>LSRequiresIPhoneOS</key> |
||||
<true/> |
||||
<key>UILaunchStoryboardName</key> |
||||
<string>LaunchScreen</string> |
||||
<key>UIMainStoryboardFile</key> |
||||
<string>Main</string> |
||||
<key>UIRequiredDeviceCapabilities</key> |
||||
<array> |
||||
<string>armv7</string> |
||||
</array> |
||||
<key>UISupportedInterfaceOrientations</key> |
||||
<array> |
||||
<string>UIInterfaceOrientationPortrait</string> |
||||
<string>UIInterfaceOrientationLandscapeLeft</string> |
||||
<string>UIInterfaceOrientationLandscapeRight</string> |
||||
</array> |
||||
<key>UISupportedInterfaceOrientations~ipad</key> |
||||
<array> |
||||
<string>UIInterfaceOrientationPortrait</string> |
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string> |
||||
<string>UIInterfaceOrientationLandscapeLeft</string> |
||||
<string>UIInterfaceOrientationLandscapeRight</string> |
||||
</array> |
||||
</dict> |
||||
</plist> |
@ -0,0 +1,15 @@ |
||||
//
|
||||
// ViewController.h
|
||||
// Sample
|
||||
//
|
||||
// Created by Jorge Canizalez Diaz on 2/16/15.
|
||||
// Copyright (c) 2015 gRPC. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h> |
||||
|
||||
@interface ViewController : UIViewController |
||||
|
||||
|
||||
@end |
||||
|
@ -0,0 +1,27 @@ |
||||
// |
||||
// ViewController.m |
||||
// Sample |
||||
// |
||||
// Created by Jorge Canizalez Diaz on 2/16/15. |
||||
// Copyright (c) 2015 gRPC. All rights reserved. |
||||
// |
||||
|
||||
#import "ViewController.h" |
||||
|
||||
@interface ViewController () |
||||
|
||||
@end |
||||
|
||||
@implementation ViewController |
||||
|
||||
- (void)viewDidLoad { |
||||
[super viewDidLoad]; |
||||
// Do any additional setup after loading the view, typically from a nib. |
||||
} |
||||
|
||||
- (void)didReceiveMemoryWarning { |
||||
[super didReceiveMemoryWarning]; |
||||
// Dispose of any resources that can be recreated. |
||||
} |
||||
|
||||
@end |
@ -0,0 +1,16 @@ |
||||
// |
||||
// main.m |
||||
// Sample |
||||
// |
||||
// Created by Jorge Canizalez Diaz on 2/16/15. |
||||
// Copyright (c) 2015 gRPC. All rights reserved. |
||||
// |
||||
|
||||
#import <UIKit/UIKit.h> |
||||
#import "AppDelegate.h" |
||||
|
||||
int main(int argc, char * argv[]) { |
||||
@autoreleasepool { |
||||
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); |
||||
} |
||||
} |
@ -0,0 +1,24 @@ |
||||
<?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.grpc.$(PRODUCT_NAME:rfc1034identifier)</string> |
||||
<key>CFBundleInfoDictionaryVersion</key> |
||||
<string>6.0</string> |
||||
<key>CFBundleName</key> |
||||
<string>$(PRODUCT_NAME)</string> |
||||
<key>CFBundlePackageType</key> |
||||
<string>BNDL</string> |
||||
<key>CFBundleShortVersionString</key> |
||||
<string>1.0</string> |
||||
<key>CFBundleSignature</key> |
||||
<string>????</string> |
||||
<key>CFBundleVersion</key> |
||||
<string>1</string> |
||||
</dict> |
||||
</plist> |
@ -0,0 +1,40 @@ |
||||
// |
||||
// SampleTests.m |
||||
// SampleTests |
||||
// |
||||
// Created by Jorge Canizalez Diaz on 2/16/15. |
||||
// Copyright (c) 2015 gRPC. All rights reserved. |
||||
// |
||||
|
||||
#import <UIKit/UIKit.h> |
||||
#import <XCTest/XCTest.h> |
||||
|
||||
@interface SampleTests : XCTestCase |
||||
|
||||
@end |
||||
|
||||
@implementation SampleTests |
||||
|
||||
- (void)setUp { |
||||
[super setUp]; |
||||
// Put setup code here. This method is called before the invocation of each test method in the class. |
||||
} |
||||
|
||||
- (void)tearDown { |
||||
// Put teardown code here. This method is called after the invocation of each test method in the class. |
||||
[super tearDown]; |
||||
} |
||||
|
||||
- (void)testExample { |
||||
// This is an example of a functional test case. |
||||
XCTAssert(YES, @"Pass"); |
||||
} |
||||
|
||||
- (void)testPerformanceExample { |
||||
// This is an example of a performance test case. |
||||
[self measureBlock:^{ |
||||
// Put the code you want to measure the time of here. |
||||
}]; |
||||
} |
||||
|
||||
@end |
Loading…
Reference in new issue