Skip to content

Commit 34f68c8

Browse files
[codex] Move FirebaseSessions into Installations (#138)
* Remove Core GoogleAppMeasurement podspec * Move FirebaseSessions into Installations
1 parent cb96297 commit 34f68c8

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

components.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ void SetArtifactsPodSpecs ()
182182
PodSpec.Create ("FirebaseCoreInternal", "12.6.0", frameworkSource: FrameworkSource.Pods),
183183
PodSpec.Create ("FirebaseMessagingInterop", "12.6.0", frameworkSource: FrameworkSource.Pods),
184184
PodSpec.Create ("FirebaseRemoteConfigInterop", "12.6.0", frameworkSource: FrameworkSource.Pods),
185-
PodSpec.Create ("FirebaseSessions", "12.6.0", frameworkSource: FrameworkSource.Pods),
186185
PodSpec.Create ("FirebaseSharedSwift", "12.6.0", frameworkSource: FrameworkSource.Pods),
187186
PodSpec.Create ("PromisesSwift", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "Promises", targetName: "PromisesSwift"),
188187
PodSpec.Create ("leveldb-library", "1.22.6", frameworkSource: FrameworkSource.Pods, frameworkName: "leveldb"),
@@ -197,7 +196,8 @@ void SetArtifactsPodSpecs ()
197196
// PodSpec.Create ("Firebase", "8.10.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseInAppMessaging", targetName: "FirebaseInAppMessaging", subSpecs: new [] { "InAppMessaging" })
198197
//};
199198
FIREBASE_INSTALLATIONS_ARTIFACT.PodSpecs = new [] {
200-
PodSpec.Create ("FirebaseInstallations", "12.6.0", frameworkSource: FrameworkSource.Pods)
199+
PodSpec.Create ("FirebaseInstallations", "12.6.0", frameworkSource: FrameworkSource.Pods),
200+
PodSpec.Create ("FirebaseSessions", "12.6.0", frameworkSource: FrameworkSource.Pods)
201201
};
202202
FIREBASE_PERFORMANCE_MONITORING_ARTIFACT.PodSpecs = new [] {
203203
PodSpec.Create ("FirebasePerformance", "12.6.0", frameworkSource: FrameworkSource.Pods)

source/Firebase/Core/Core.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,6 @@
9393
<SmartLink>True</SmartLink>
9494
<ForceLoad>True</ForceLoad>
9595
</NativeReference>
96-
<NativeReference Include="..\..\..\externals\FirebaseSessions.xcframework">
97-
<Kind>Framework</Kind>
98-
<SmartLink>True</SmartLink>
99-
<ForceLoad>True</ForceLoad>
100-
</NativeReference>
10196
</ItemGroup>
10297
<ItemGroup>
10398
<ObjcBindingCoreSource Include="Enums.cs" />

source/Firebase/Installations/Installations.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@
4646
<ForceLoad>True</ForceLoad>
4747
<Frameworks>Security</Frameworks>
4848
</NativeReference>
49+
<NativeReference Include="..\..\..\externals\FirebaseSessions.xcframework">
50+
<Kind>Framework</Kind>
51+
<SmartLink>True</SmartLink>
52+
<ForceLoad>True</ForceLoad>
53+
</NativeReference>
4954
</ItemGroup>
5055
<ItemGroup>
5156
<ObjcBindingCoreSource Include="Enums.cs" />

0 commit comments

Comments
 (0)