From b6070ab4e2455515799264d6527d79c7f5cd17c4 Mon Sep 17 00:00:00 2001 From: Worthing ~ <115107835+w-goog@users.noreply.github.com> Date: Thu, 4 Jun 2026 14:40:35 -0700 Subject: [PATCH] g-orchestrated: clean up example app config after release testing - Example-iOS_ObjC/Podfile: bump platform :ios from 11.0 to 12.0 to match the podspec minimum deployment target (iOS 12 since 2.0.0); pod install otherwise fails to resolve the AppAuth dependency. - Example-iOS_Swift-SPM: remove the hardcoded PRODUCT_BUNDLE_IDENTIFIER from the Xcode project so the bundle identifier is supplied via Config/Example.local.xcconfig, matching how the OAuth client values are set. --- Examples/Example-iOS_ObjC/Podfile | 2 +- .../Example-iOS_Swift-SPM/Example.xcodeproj/project.pbxproj | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Examples/Example-iOS_ObjC/Podfile b/Examples/Example-iOS_ObjC/Podfile index 600de7d10..9684ad6f9 100644 --- a/Examples/Example-iOS_ObjC/Podfile +++ b/Examples/Example-iOS_ObjC/Podfile @@ -1,4 +1,4 @@ -platform :ios, '11.0' +platform :ios, '12.0' use_frameworks! diff --git a/Examples/Example-iOS_Swift-SPM/Example.xcodeproj/project.pbxproj b/Examples/Example-iOS_Swift-SPM/Example.xcodeproj/project.pbxproj index da3b94da0..3bc0e9a75 100644 --- a/Examples/Example-iOS_Swift-SPM/Example.xcodeproj/project.pbxproj +++ b/Examples/Example-iOS_Swift-SPM/Example.xcodeproj/project.pbxproj @@ -293,7 +293,6 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.google.experimental0.dev; PRODUCT_NAME = "$(TARGET_NAME)"; STRING_CATALOG_GENERATE_SYMBOLS = YES; SWIFT_APPROACHABLE_CONCURRENCY = YES; @@ -322,7 +321,6 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.google.experimental0.dev; PRODUCT_NAME = "$(TARGET_NAME)"; STRING_CATALOG_GENERATE_SYMBOLS = YES; SWIFT_APPROACHABLE_CONCURRENCY = YES;