Index: GTL.xcodeproj/project.pbxproj =================================================================== --- GTL.xcodeproj/project.pbxproj (revision 457) +++ GTL.xcodeproj/project.pbxproj (working copy) @@ -1048,7 +1048,6 @@ SDKROOT = macosx; WARNING_CFLAGS = ( "-Wall", - "-Werror", "-Wendif-labels", "-Wnewline-eof", "-Wfloat-equal", @@ -1084,7 +1083,6 @@ SDKROOT = macosx; WARNING_CFLAGS = ( "-Wall", - "-Werror", "-Wendif-labels", "-Wnewline-eof", "-Wfloat-equal", @@ -1178,26 +1176,36 @@ 4F1C6E101027B3CF00B46459 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; + ARCHS = ( + "$(ARCHS_STANDARD)", + armv7s, + ); + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_CFLAGS = ( "$(inherited)", "-DGTL_IPHONE=1", ); PRODUCT_NAME = GTLTouchStaticLib; SDKROOT = iphoneos; + SKIP_INSTALL = YES; }; name = Debug; }; 4F1C6E111027B3CF00B46459 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; + ARCHS = ( + "$(ARCHS_STANDARD)", + armv7s, + ); + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_CFLAGS = ( "$(inherited)", "-DGTL_IPHONE=1", ); PRODUCT_NAME = GTLTouchStaticLib; SDKROOT = iphoneos; + SKIP_INSTALL = YES; }; name = Release; }; Index: Objects/GTLService.h =================================================================== --- Objects/GTLService.h (revision 457) +++ Objects/GTLService.h (working copy) @@ -30,13 +30,6 @@ // GTMSessionFetcher rather than the older GTMHTTPFetcher. The session // fetcher requires iOS 7/OS X 10.9 and supports out-of-process uploads. -#if (!TARGET_OS_IPHONE && defined(MAC_OS_X_VERSION_10_11) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_11) \ - || (TARGET_OS_IPHONE && defined(__IPHONE_9_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0) - #ifndef GTM_USE_SESSION_FETCHER - #define GTM_USE_SESSION_FETCHER 1 - #endif -#endif - #if !defined(GTL_USE_SESSION_FETCHER) && defined(GTM_USE_SESSION_FETCHER) #define GTL_USE_SESSION_FETCHER GTM_USE_SESSION_FETCHER #endif // GTL_USE_SESSION_FETCHER