Skip to content

Commit

Permalink
Adding bundle identifiers (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobaFetters authored Aug 14, 2024
1 parent ac9b269 commit eb1aaf9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions Apollo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions Apollo.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit eb1aaf9

Please sign in to comment.