Skip to content

Commit

Permalink
[Config] Refactor Swift sources out of FirebaseRemoteConfigSwift (#11747
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ncooke3 authored Aug 29, 2023
1 parent bb1dd57 commit 1dc90cd
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FirebaseRemoteConfig.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ app update.
'FirebaseABTesting/Sources/Private/*.h',
'FirebaseCore/Extension/*.h',
'FirebaseInstallations/Source/Library/Private/*.h',
'FirebaseRemoteConfigSwift/Sources/**/*.swift',
'FirebaseRemoteConfig/Swift/**/*.swift',
]
s.public_header_files = base_dir + 'Public/FirebaseRemoteConfig/*.h'
s.pod_target_xcconfig = {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion FirebaseRemoteConfigSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ app update.
s.prefix_header_file = false

s.source_files = [
'FirebaseRemoteConfigSwift/Exporter/**/*.swift',
'FirebaseRemoteConfigSwift/Sources/**/*.swift',
]

s.dependency 'FirebaseRemoteConfig', '~> 10.0'
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -998,14 +998,14 @@ let package = Package(
"FirebaseRemoteConfigInternal",
"FirebaseSharedSwift",
],
path: "FirebaseRemoteConfigSwift/Sources"
path: "FirebaseRemoteConfig/Swift"
),
.target(
name: "FirebaseRemoteConfigSwift",
dependencies: [
"FirebaseRemoteConfig",
],
path: "FirebaseRemoteConfigSwift/Exporter"
path: "FirebaseRemoteConfigSwift/Sources"
),
.testTarget(
name: "RemoteConfigFakeConsole",
Expand Down

0 comments on commit 1dc90cd

Please sign in to comment.