Skip to content

Commit 7e7400e

Browse files
committed
Add Podfile and remove SPM dep from CocoaPods target
1 parent 0031584 commit 7e7400e

File tree

3 files changed

+61
-16
lines changed

3 files changed

+61
-16
lines changed

firebaseai/FirebaseAIExample.xcodeproj/project.pbxproj

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
86BB55D42E8B16DC0054B8B5 /* GenerateContentViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88209C1D2B0FBDC300F64795 /* GenerateContentViewModel.swift */; };
6666
86BB55D52E8B16DC0054B8B5 /* GoogleSearchSuggestionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE793DC2E256D3900708F02 /* GoogleSearchSuggestionView.swift */; };
6767
86BB55D62E8B16DC0054B8B5 /* GroundedResponseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE793DD2E256D3900708F02 /* GroundedResponseView.swift */; };
68-
86BB55D82E8B16DC0054B8B5 /* FirebaseAI in Frameworks */ = {isa = PBXBuildFile; productRef = 86BB55C12E8B16DC0054B8B5 /* FirebaseAI */; };
6968
86BB55D92E8B16DC0054B8B5 /* MarkdownUI in Frameworks */ = {isa = PBXBuildFile; productRef = 86BB55BE2E8B16DC0054B8B5 /* MarkdownUI */; };
7069
86BB55DA2E8B16DC0054B8B5 /* GenerativeAIUIComponents in Frameworks */ = {isa = PBXBuildFile; productRef = 86BB55C02E8B16DC0054B8B5 /* GenerativeAIUIComponents */; };
7170
86BB55DC2E8B16DC0054B8B5 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8848C8392B0D04BD007B434F /* Preview Assets.xcassets */; };
@@ -180,7 +179,6 @@
180179
isa = PBXFrameworksBuildPhase;
181180
buildActionMask = 2147483647;
182181
files = (
183-
86BB55D82E8B16DC0054B8B5 /* FirebaseAI in Frameworks */,
184182
86BB55D92E8B16DC0054B8B5 /* MarkdownUI in Frameworks */,
185183
86BB55DA2E8B16DC0054B8B5 /* GenerativeAIUIComponents in Frameworks */,
186184
);
@@ -469,7 +467,6 @@
469467
packageProductDependencies = (
470468
86BB55BE2E8B16DC0054B8B5 /* MarkdownUI */,
471469
86BB55C02E8B16DC0054B8B5 /* GenerativeAIUIComponents */,
472-
86BB55C12E8B16DC0054B8B5 /* FirebaseAI */,
473470
);
474471
productName = GenerativeAIExample;
475472
productReference = 86BB55E22E8B16DC0054B8B5 /* FirebaseAIExample-CocoaPods.app */;
@@ -1009,14 +1006,6 @@
10091006
revision = 55441810c0f678c78ed7e2ebd46dde89228e02fc;
10101007
};
10111008
};
1012-
86BB55C22E8B16DC0054B8B5 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */ = {
1013-
isa = XCRemoteSwiftPackageReference;
1014-
repositoryURL = "https://github.com/firebase/firebase-ios-sdk.git";
1015-
requirement = {
1016-
branch = "ah/ai-logic-rename";
1017-
kind = branch;
1018-
};
1019-
};
10201009
88209C212B0FBDF700F64795 /* XCRemoteSwiftPackageReference "swift-markdown-ui" */ = {
10211010
isa = XCRemoteSwiftPackageReference;
10221011
repositoryURL = "https://github.com/gonzalezreal/swift-markdown-ui";
@@ -1062,11 +1051,6 @@
10621051
isa = XCSwiftPackageProductDependency;
10631052
productName = GenerativeAIUIComponents;
10641053
};
1065-
86BB55C12E8B16DC0054B8B5 /* FirebaseAI */ = {
1066-
isa = XCSwiftPackageProductDependency;
1067-
package = 86BB55C22E8B16DC0054B8B5 /* XCRemoteSwiftPackageReference "firebase-ios-sdk" */;
1068-
productName = FirebaseAI;
1069-
};
10701054
886F95D72B17BA420036F07A /* MarkdownUI */ = {
10711055
isa = XCSwiftPackageProductDependency;
10721056
package = 88209C212B0FBDF700F64795 /* XCRemoteSwiftPackageReference "swift-markdown-ui" */;

firebaseai/Podfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source 'https://github.com/firebase/SpecsStaging.git'
2+
source 'https://cdn.cocoapods.org/'
3+
4+
platform :ios, '16.0'
5+
6+
target 'FirebaseAIExample-CocoaPods' do
7+
use_frameworks!
8+
9+
pod 'FirebaseAILogic'
10+
end

firebaseai/Podfile.lock

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
PODS:
2+
- FirebaseAILogic (12.4.0):
3+
- FirebaseAppCheckInterop (~> 12.4.0)
4+
- FirebaseAuthInterop (~> 12.4.0)
5+
- FirebaseCore (~> 12.4.0)
6+
- FirebaseCoreExtension (~> 12.4.0)
7+
- FirebaseAppCheckInterop (12.4.0)
8+
- FirebaseAuthInterop (12.4.0)
9+
- FirebaseCore (12.4.0):
10+
- FirebaseCoreInternal (~> 12.4.0)
11+
- GoogleUtilities/Environment (~> 8.1)
12+
- GoogleUtilities/Logger (~> 8.1)
13+
- FirebaseCoreExtension (12.4.0):
14+
- FirebaseCore (~> 12.4.0)
15+
- FirebaseCoreInternal (12.4.0):
16+
- "GoogleUtilities/NSData+zlib (~> 8.1)"
17+
- GoogleUtilities/Environment (8.1.0):
18+
- GoogleUtilities/Privacy
19+
- GoogleUtilities/Logger (8.1.0):
20+
- GoogleUtilities/Environment
21+
- GoogleUtilities/Privacy
22+
- "GoogleUtilities/NSData+zlib (8.1.0)":
23+
- GoogleUtilities/Privacy
24+
- GoogleUtilities/Privacy (8.1.0)
25+
26+
DEPENDENCIES:
27+
- FirebaseAILogic
28+
29+
SPEC REPOS:
30+
https://github.com/firebase/SpecsStaging.git:
31+
- FirebaseAILogic
32+
- FirebaseAppCheckInterop
33+
- FirebaseAuthInterop
34+
- FirebaseCore
35+
- FirebaseCoreExtension
36+
- FirebaseCoreInternal
37+
trunk:
38+
- GoogleUtilities
39+
40+
SPEC CHECKSUMS:
41+
FirebaseAILogic: c7ea9e2c9e48559dc67d2822502a2b99af523c6e
42+
FirebaseAppCheckInterop: f734c802f21fe1da0837708f0f9a27218c8a4ed0
43+
FirebaseAuthInterop: 858e6b754966e70740a4370dd1503dfffe6dbb49
44+
FirebaseCore: 9a68aa63c25750159ed619d9d924955cc5e3d9aa
45+
FirebaseCoreExtension: 7e1f7118ee970e001a8013719fb90950ee5e0018
46+
FirebaseCoreInternal: d7f5a043c2cd01a08103ab586587c1468047bca6
47+
GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1
48+
49+
PODFILE CHECKSUM: 05d1a98bd8d8cc1a30c275a5ca63676e70662633
50+
51+
COCOAPODS: 1.16.2

0 commit comments

Comments
 (0)