From 5605952f175a505e4b155a93a7741cd374f36f4f Mon Sep 17 00:00:00 2001 From: Matthew Mathias Date: Thu, 7 Dec 2023 09:27:54 -0800 Subject: [PATCH] Update SignInSample Podfile minimum iOS version This change updates the Podfile's minimum iOS version to match the Firebase App Check minimum iOS version to match what is now in GoogleSignIn.podspec. Without this change, running Analyzing dependencies Downloading dependencies Generating Pods project Integrating client project Pod installation complete! There are 2 dependencies from the Podfile and 8 total pods installed. would produce a warning in the console about GoogleSignIn.podspec having a higher minimum iOS version than this sample. Fixes #354. --- Samples/ObjC/SignInSample/Podfile | 2 +- .../SignInSampleForPod.xcodeproj/project.pbxproj | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Samples/ObjC/SignInSample/Podfile b/Samples/ObjC/SignInSample/Podfile index 003fefe1..d08d7b41 100644 --- a/Samples/ObjC/SignInSample/Podfile +++ b/Samples/ObjC/SignInSample/Podfile @@ -1,4 +1,4 @@ -platform :ios, '10.0' +platform :ios, '11.0' use_frameworks! target 'SampleForPod' do diff --git a/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj b/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj index 417d1c30..ce6f4817 100644 --- a/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj +++ b/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj @@ -308,16 +308,22 @@ inputPaths = ( "${PODS_ROOT}/Target Support Files/Pods-SampleForPod/Pods-SampleForPod-frameworks.sh", "${BUILT_PRODUCTS_DIR}/AppAuth/AppAuth.framework", + "${BUILT_PRODUCTS_DIR}/AppCheckCore/AppCheckCore.framework", "${BUILT_PRODUCTS_DIR}/GTMAppAuth/GTMAppAuth.framework", "${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework", "${BUILT_PRODUCTS_DIR}/GoogleSignIn/GoogleSignIn.framework", + "${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework", + "${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AppAuth.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AppCheckCore.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMAppAuth.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GTMSessionFetcher.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleSignIn.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh;