Skip to content

Commit bb1dd57

Browse files
authored
[Config] Move 'ClientApp' out of 'SwiftPMTests' directory (#11741)
1 parent 732c1ce commit bb1dd57

File tree

21 files changed

+46
-45
lines changed

21 files changed

+46
-45
lines changed

.github/workflows/client_app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "*.podspec"
1010
- "scripts/install_prereqs.sh"
1111
- "scripts/build.sh"
12-
- "SwiftPMTests/*"
12+
- "ClientApp/*"
1313
- "Gemfile*"
1414
schedule:
1515
# Run every day at 12am (PST) - cron uses UTC times

SwiftPMTests/ClientApp/ClientApp.xcodeproj/project.pbxproj renamed to ClientApp/ClientApp.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
EA5A62912A9914F300F5711A /* ClientApp_CocoaPods.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ClientApp_CocoaPods.entitlements; sourceTree = "<group>"; };
7070
EA5A62932A9914F300F5711A /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
7171
EA7DF54229EF20B9005664A7 /* swift-import-test.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "swift-import-test.swift"; sourceTree = "<group>"; };
72-
EA7DF54929EF2A92005664A7 /* firebase-ios-sdk */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = "firebase-ios-sdk"; path = ../..; sourceTree = "<group>"; };
72+
EA7DF54929EF2A92005664A7 /* firebase-ios-sdk */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = "firebase-ios-sdk"; path = ../; sourceTree = "<group>"; };
7373
/* End PBXFileReference section */
7474

7575
/* Begin PBXFrameworksBuildPhase section */

ClientApp/Podfile

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
source 'https://github.com/firebase/SpecsDev.git'
2+
source 'https://github.com/firebase/SpecsStaging.git'
3+
source 'https://cdn.cocoapods.org/'
4+
5+
# Uncomment the next line to define a global platform for your project
6+
platform :ios, '13.0'
7+
8+
target 'ClientApp-CocoaPods' do
9+
# Comment the next line if you don't want to use dynamic frameworks
10+
use_frameworks!
11+
12+
# Pods for ClientApp-CocoaPods
13+
pod 'FirebaseCore', :path => '../'
14+
pod 'FirebaseInstallations', :path => '../'
15+
pod 'FirebaseAnalytics' # Binary pods don't work with `:path`.
16+
pod 'FirebaseAnalyticsOnDeviceConversion', :path => '../'
17+
pod 'FirebaseAnalyticsSwift', :path => '../'
18+
pod 'FirebaseABTesting', :path => '../'
19+
pod 'FirebaseAppCheck', :path => '../'
20+
pod 'FirebaseRemoteConfig', :path => '../'
21+
pod 'FirebaseRemoteConfigSwift', :path => '../'
22+
pod 'FirebaseAppDistribution', :path => '../'
23+
pod 'FirebaseAuth', :path => '../'
24+
pod 'FirebaseCrashlytics', :path => '../'
25+
pod 'FirebaseDatabase', :path => '../'
26+
pod 'FirebaseDatabaseSwift', :path => '../'
27+
pod 'FirebaseDynamicLinks', :path => '../'
28+
pod 'FirebaseFirestore', :path => '../'
29+
pod 'FirebaseFirestoreSwift', :path => '../'
30+
pod 'FirebaseFunctions', :path => '../'
31+
pod 'FirebaseInAppMessaging', :path => '../'
32+
pod 'FirebaseInAppMessagingSwift', :path => '../'
33+
pod 'FirebaseMessaging', :path => '../'
34+
pod 'FirebasePerformance', :path => '../'
35+
pod 'FirebaseStorage', :path => '../'
36+
pod 'FirebaseMLModelDownloader', :path => '../'
37+
pod 'Firebase', :path => '../'
38+
39+
end

0 commit comments

Comments
 (0)