From 22721a013bdd10d5eb395ba18453585f5f3f1f7f Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Mon, 31 Aug 2020 23:07:20 +0200 Subject: rebuild the ios platform and the plugins --- .../GTMAppAuth/GTMAppAuth-Info.plist | 26 ++++++++++++++++++++++ .../GTMAppAuth/GTMAppAuth-dummy.m | 5 +++++ .../GTMAppAuth/GTMAppAuth-prefix.pch | 12 ++++++++++ .../GTMAppAuth/GTMAppAuth-umbrella.h | 21 +++++++++++++++++ .../GTMAppAuth/GTMAppAuth.debug.xcconfig | 11 +++++++++ .../GTMAppAuth/GTMAppAuth.modulemap | 6 +++++ .../GTMAppAuth/GTMAppAuth.release.xcconfig | 11 +++++++++ 7 files changed, 92 insertions(+) create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-Info.plist create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-prefix.pch create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.debug.xcconfig create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap create mode 100644 StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.release.xcconfig (limited to 'StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth') diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-Info.plist b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-Info.plist new file mode 100644 index 00000000..2243fe6e --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m new file mode 100644 index 00000000..04b91f31 --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_GTMAppAuth : NSObject +@end +@implementation PodsDummy_GTMAppAuth +@end diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-prefix.pch b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h new file mode 100644 index 00000000..4ab5f86a --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h @@ -0,0 +1,21 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "GTMAppAuth.h" +#import "GTMAppAuthFetcherAuthorization+Keychain.h" +#import "GTMAppAuthFetcherAuthorization.h" +#import "GTMKeychain.h" +#import "GTMOAuth2KeychainCompatibility.h" + +FOUNDATION_EXPORT double GTMAppAuthVersionNumber; +FOUNDATION_EXPORT const unsigned char GTMAppAuthVersionString[]; + diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.debug.xcconfig b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.debug.xcconfig new file mode 100644 index 00000000..217cc41a --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.debug.xcconfig @@ -0,0 +1,11 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GTMAppAuth +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AppAuth" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -weak_framework "AuthenticationServices" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/GTMAppAuth +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap new file mode 100644 index 00000000..b23c8d07 --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap @@ -0,0 +1,6 @@ +framework module GTMAppAuth { + umbrella header "GTMAppAuth-umbrella.h" + + export * + module * { export * } +} diff --git a/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.release.xcconfig b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.release.xcconfig new file mode 100644 index 00000000..217cc41a --- /dev/null +++ b/StoneIsland/platforms/ios/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.release.xcconfig @@ -0,0 +1,11 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GTMAppAuth +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AppAuth" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -weak_framework "AuthenticationServices" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/GTMAppAuth +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES -- cgit v1.2.3-70-g09d2