From eb1aaf9b3ecb19b75752faaae46e8b66b87459b4 Mon Sep 17 00:00:00 2001 From: Zach FettersMoore <4425109+BobaFetters@users.noreply.github.com> Date: Wed, 14 Aug 2024 14:20:46 -0400 Subject: [PATCH] Adding bundle identifiers (#18) --- Apollo.xcodeproj/project.pbxproj | 16 ++++++++-------- .../xcshareddata/swiftpm/Package.resolved | 4 ++-- .../Targets/Target+Apollo.swift | 2 +- .../Targets/Target+ApolloAPI.swift | 2 +- .../Targets/Target+ApolloSQLite.swift | 2 +- .../Targets/Target+ApolloWebSocket.swift | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Apollo.xcodeproj/project.pbxproj b/Apollo.xcodeproj/project.pbxproj index 7dd31cb22..fc76c7ed9 100644 --- a/Apollo.xcodeproj/project.pbxproj +++ b/Apollo.xcodeproj/project.pbxproj @@ -1022,7 +1022,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apollo; PRODUCT_NAME = Apollo; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1056,7 +1056,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apollowebsocket; PRODUCT_NAME = ApolloWebSocket; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1091,7 +1091,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apollosqlite; PRODUCT_NAME = ApolloSQLite; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1179,7 +1179,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apollo; PRODUCT_NAME = Apollo; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1214,7 +1214,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apollowebsocket; PRODUCT_NAME = ApolloWebSocket; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1248,7 +1248,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apollosqlite; PRODUCT_NAME = ApolloSQLite; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1343,7 +1343,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apolloapi; PRODUCT_NAME = ApolloAPI; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -1378,7 +1378,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = ""; + PRODUCT_BUNDLE_IDENTIFIER = com.apollographql.client.ios.apolloapi; PRODUCT_NAME = ApolloAPI; SDKROOT = iphoneos; SKIP_INSTALL = YES; diff --git a/Apollo.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Apollo.xcworkspace/xcshareddata/swiftpm/Package.resolved index cb4b75775..58cda1477 100644 --- a/Apollo.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Apollo.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/stephencelis/SQLite.swift.git", "state" : { - "revision" : "7a2e3cd27de56f6d396e84f63beefd0267b55ccb", - "version" : "0.14.1" + "revision" : "a95fc6df17d108bd99210db5e8a9bac90fe984b8", + "version" : "0.15.3" } } ], diff --git a/Tuist/ProjectDescriptionHelpers/Targets/Target+Apollo.swift b/Tuist/ProjectDescriptionHelpers/Targets/Target+Apollo.swift index 6b9c34677..a2179f417 100644 --- a/Tuist/ProjectDescriptionHelpers/Targets/Target+Apollo.swift +++ b/Tuist/ProjectDescriptionHelpers/Targets/Target+Apollo.swift @@ -9,7 +9,7 @@ extension Target { name: target.name, platform: .iOS, product: .framework, - bundleId: "", + bundleId: "com.apollographql.client.ios.apollo", deploymentTarget: target.deploymentTarget, infoPlist: .file(path: "Sources/\(target.name)/Info.plist"), sources: [ diff --git a/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloAPI.swift b/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloAPI.swift index 68494ffeb..bdee4b9f2 100644 --- a/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloAPI.swift +++ b/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloAPI.swift @@ -9,7 +9,7 @@ extension Target { name: target.name, platform: .iOS, product: .framework, - bundleId: "", + bundleId: "com.apollographql.client.ios.apolloapi", deploymentTarget: target.deploymentTarget, infoPlist: .file(path: "Sources/\(target.name)/Info.plist"), sources: [ diff --git a/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloSQLite.swift b/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloSQLite.swift index fee7a5b4a..68aa2170a 100644 --- a/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloSQLite.swift +++ b/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloSQLite.swift @@ -9,7 +9,7 @@ extension Target { name: target.name, platform: .iOS, product: .framework, - bundleId: "", + bundleId: "com.apollographql.client.ios.apollosqlite", deploymentTarget: target.deploymentTarget, infoPlist: .file(path: "Sources/\(target.name)/Info.plist"), sources: [ diff --git a/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloWebSocket.swift b/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloWebSocket.swift index 224785ce8..4f44591c2 100644 --- a/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloWebSocket.swift +++ b/Tuist/ProjectDescriptionHelpers/Targets/Target+ApolloWebSocket.swift @@ -9,7 +9,7 @@ extension Target { name: target.name, platform: .iOS, product: .framework, - bundleId: "", + bundleId: "com.apollographql.client.ios.apollowebsocket", deploymentTarget: target.deploymentTarget, infoPlist: .file(path: "Sources/\(target.name)/Info.plist"), sources: [