| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357 |
- // swift-tools-version:5.3
- // The swift-tools-version declares the minimum version of Swift required to
- // build this package.
- // Copyright 2020 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import PackageDescription
- import class Foundation.ProcessInfo
- let firebaseVersion = "10.5.0"
- let package = Package(
- name: "Firebase",
- platforms: [.iOS(.v11), .macOS(.v10_13), .tvOS(.v12), .watchOS(.v7)],
- products: [
- .library(
- name: "FirebaseAnalytics",
- targets: ["FirebaseAnalyticsTarget"]
- ),
- .library(
- name: "FirebaseAnalyticsWithoutAdIdSupport",
- targets: ["FirebaseAnalyticsWithoutAdIdSupportTarget"]
- ),
- .library(
- name: "FirebaseAnalyticsOnDeviceConversion",
- targets: ["FirebaseAnalyticsOnDeviceConversionTarget"]
- ),
- .library(
- name: "FirebaseAnalyticsSwift",
- targets: ["FirebaseAnalyticsSwiftTarget"]
- ),
- .library(
- name: "FirebaseAuth",
- targets: ["FirebaseAuth"]
- ),
- .library(
- name: "FirebaseAppCheck",
- targets: ["FirebaseAppCheck"]
- ),
- .library(
- name: "FirebaseAppDistribution-Beta",
- targets: ["FirebaseAppDistributionTarget"]
- ),
- .library(
- name: "FirebaseAuthCombine-Community",
- targets: ["FirebaseAuthCombineSwift"]
- ),
- .library(
- name: "FirebaseFirestoreCombine-Community",
- targets: ["FirebaseFirestoreCombineSwift"]
- ),
- .library(
- name: "FirebaseFunctionsCombine-Community",
- targets: ["FirebaseFunctionsCombineSwift"]
- ),
- .library(
- name: "FirebaseStorageCombine-Community",
- targets: ["FirebaseStorageCombineSwift"]
- ),
- .library(
- name: "FirebaseCrashlytics",
- targets: ["FirebaseCrashlytics"]
- ),
- .library(
- name: "FirebaseDatabase",
- targets: ["FirebaseDatabase"]
- ),
- .library(
- name: "FirebaseDatabaseSwift",
- targets: ["FirebaseDatabaseSwift"]
- ),
- .library(
- name: "FirebaseDynamicLinks",
- targets: ["FirebaseDynamicLinksTarget"]
- ),
- .library(
- name: "FirebaseFirestore",
- targets: ["FirebaseFirestoreTarget"]
- ),
- .library(
- name: "FirebaseFirestoreSwift",
- targets: ["FirebaseFirestoreSwiftTarget"]
- ),
- .library(
- name: "FirebaseFunctions",
- targets: ["FirebaseFunctions"]
- ),
- .library(
- name: "FirebaseInAppMessaging-Beta",
- targets: ["FirebaseInAppMessagingTarget"]
- ),
- .library(
- name: "FirebaseInAppMessagingSwift-Beta",
- targets: ["FirebaseInAppMessagingSwift"]
- ),
- .library(
- name: "FirebaseInstallations",
- targets: ["FirebaseInstallations"]
- ),
- .library(
- name: "FirebaseMessaging",
- targets: ["FirebaseMessaging"]
- ),
- .library(
- name: "FirebaseMLModelDownloader",
- targets: ["FirebaseMLModelDownloader"]
- ),
- .library(
- name: "FirebasePerformance",
- targets: ["FirebasePerformanceTarget"]
- ),
- .library(
- name: "FirebaseRemoteConfig",
- targets: ["FirebaseRemoteConfig"]
- ),
- .library(
- name: "FirebaseRemoteConfigSwift",
- targets: ["FirebaseRemoteConfigSwift"]
- ),
- .library(
- name: "FirebaseStorage",
- targets: ["FirebaseStorage"]
- ),
- ],
- dependencies: [
- .package(
- name: "Promises",
- url: "https://github.com/google/promises.git",
- "2.1.0" ..< "3.0.0"
- ),
- .package(
- name: "SwiftProtobuf",
- url: "https://github.com/apple/swift-protobuf.git",
- "1.19.0" ..< "2.0.0"
- ),
- .package(
- name: "GoogleAppMeasurement",
- url: "https://github.com/google/GoogleAppMeasurement.git",
- // Note that CI changes the version to the head of main for CI.
- // See scripts/setup_spm_tests.sh.
- .exact("10.4.0")
- ),
- .package(
- name: "GoogleDataTransport",
- url: "https://github.com/google/GoogleDataTransport.git",
- "9.2.0" ..< "10.0.0"
- ),
- .package(
- name: "GoogleUtilities",
- url: "https://github.com/google/GoogleUtilities.git",
- "7.10.0" ..< "8.0.0"
- ),
- .package(
- name: "GTMSessionFetcher",
- url: "https://github.com/google/gtm-session-fetcher.git",
- "2.1.0" ..< "4.0.0"
- ),
- .package(
- name: "nanopb",
- url: "https://github.com/firebase/nanopb.git",
- "2.30909.0" ..< "2.30910.0"
- ),
- .package(
- name: "abseil",
- url: "https://github.com/firebase/abseil-cpp-SwiftPM.git",
- "0.20220203.1" ..< "0.20220204.0"
- ),
- .package(
- name: "gRPC",
- url: "https://github.com/grpc/grpc-ios.git",
- "1.44.0-grpc" ..< "1.45.0-grpc"
- ),
- .package(
- name: "OCMock",
- url: "https://github.com/erikdoe/ocmock.git",
- .revision("c5eeaa6dde7c308a5ce48ae4d4530462dd3a1110")
- ),
- .package(
- name: "leveldb",
- url: "https://github.com/firebase/leveldb.git",
- "1.22.2" ..< "1.23.0"
- ),
- .package(
- name: "GCDWebServer",
- url: "https://github.com/SlaunchaMan/GCDWebServer.git",
- .revision("935e2736044e71e5341663c3cc9a335ba6867a2b")
- ),
- ],
- targets: [
- .target(
- name: "Firebase",
- path: "CoreOnly/Sources",
- publicHeadersPath: "./"
- ),
- .target(
- name: "FirebaseCore",
- dependencies: [
- "Firebase",
- "FirebaseCoreInternal",
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "GULLogger", package: "GoogleUtilities"),
- ],
- path: "FirebaseCore/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../.."),
- .define("Firebase_VERSION", to: firebaseVersion),
- // TODO: - Add support for cflags cSetting so that we can set the -fno-autolink option
- ],
- linkerSettings: [
- .linkedFramework("UIKit", .when(platforms: [.iOS, .tvOS])),
- .linkedFramework("AppKit", .when(platforms: [.macOS])),
- ]
- ),
- .testTarget(
- name: "CoreUnit",
- dependencies: [
- "FirebaseCore",
- "SharedTestUtilities",
- "HeartbeatLoggingTestUtils",
- "OCMock",
- ],
- path: "FirebaseCore/Tests/Unit",
- exclude: ["Resources/GoogleService-Info.plist"],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- // MARK: - Firebase Core Extension
- // Extension of FirebaseCore for consuming by Swift product SDKs.
- // When depending on `FirebaseCoreExtension`, also depend on `FirebaseCore`
- // to avoid potential linker issues.
- .target(
- name: "FirebaseCoreExtension",
- path: "FirebaseCore/Extension",
- publicHeadersPath: ".",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- // MARK: - Firebase Core Internal
- // Shared collection of APIs for internal FirebaseCore usage.
- .target(
- name: "FirebaseCoreInternal",
- dependencies: [
- .product(name: "GULNSData", package: "GoogleUtilities"),
- ],
- path: "FirebaseCore/Internal/Sources"
- ),
- .target(
- name: "HeartbeatLoggingTestUtils",
- dependencies: ["FirebaseCoreInternal"],
- path: "HeartbeatLoggingTestUtils/Sources"
- ),
- .testTarget(
- name: "FirebaseCoreInternalTests",
- dependencies: [
- "FirebaseCoreInternal",
- "HeartbeatLoggingTestUtils",
- ],
- path: "FirebaseCore/Internal/Tests"
- ),
- .target(
- name: "FirebaseABTesting",
- dependencies: ["FirebaseCore"],
- path: "FirebaseABTesting/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .testTarget(
- name: "ABTestingUnit",
- dependencies: ["FirebaseABTesting", "OCMock"],
- path: "FirebaseABTesting/Tests/Unit",
- resources: [.process("Resources")],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .target(
- name: "FirebaseAnalyticsTarget",
- dependencies: [.target(name: "FirebaseAnalyticsWrapper",
- condition: .when(platforms: [.iOS, .macOS, .tvOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseAnalyticsWrap"
- ),
- .target(
- name: "FirebaseAnalyticsWrapper",
- dependencies: [
- .target(name: "FirebaseAnalytics", condition: .when(platforms: [.iOS, .macOS, .tvOS])),
- .product(name: "GoogleAppMeasurement",
- package: "GoogleAppMeasurement",
- condition: .when(platforms: [.iOS, .macOS, .tvOS])),
- "FirebaseCore",
- "FirebaseInstallations",
- .product(name: "GULAppDelegateSwizzler", package: "GoogleUtilities"),
- .product(name: "GULMethodSwizzler", package: "GoogleUtilities"),
- .product(name: "GULNSData", package: "GoogleUtilities"),
- .product(name: "GULNetwork", package: "GoogleUtilities"),
- .product(name: "nanopb", package: "nanopb"),
- ],
- path: "FirebaseAnalyticsWrapper",
- linkerSettings: [
- .linkedLibrary("sqlite3"),
- .linkedLibrary("c++"),
- .linkedLibrary("z"),
- .linkedFramework("StoreKit"),
- ]
- ),
- .binaryTarget(
- name: "FirebaseAnalytics",
- url: "https://dl.google.com/firebase/ios/swiftpm/10.4.0/FirebaseAnalytics.zip",
- checksum: "d5098cd2d731104dddb11c39b2cbbd3aab11a604c528706a16ff0114abd8d53a"
- ),
- .target(
- name: "FirebaseAnalyticsSwiftTarget",
- dependencies: [.target(name: "FirebaseAnalyticsSwift",
- condition: .when(platforms: [.iOS, .macOS, .tvOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseAnalyticsSwiftWrap"
- ),
- .target(
- name: "FirebaseAnalyticsSwift",
- dependencies: ["FirebaseAnalyticsWrapper"],
- path: "FirebaseAnalyticsSwift/Sources"
- ),
- .target(
- name: "FirebaseAnalyticsWithoutAdIdSupportTarget",
- dependencies: [.target(name: "FirebaseAnalyticsWithoutAdIdSupportWrapper",
- condition: .when(platforms: [.iOS, .macOS, .tvOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseAnalyticsWithoutAdIdSupportWrap"
- ),
- .target(
- name: "FirebaseAnalyticsWithoutAdIdSupportWrapper",
- dependencies: [
- .target(name: "FirebaseAnalytics", condition: .when(platforms: [.iOS, .macOS, .tvOS])),
- .product(name: "GoogleAppMeasurementWithoutAdIdSupport",
- package: "GoogleAppMeasurement",
- condition: .when(platforms: [.iOS])),
- "FirebaseCore",
- "FirebaseInstallations",
- .product(name: "GULAppDelegateSwizzler", package: "GoogleUtilities"),
- .product(name: "GULMethodSwizzler", package: "GoogleUtilities"),
- .product(name: "GULNSData", package: "GoogleUtilities"),
- .product(name: "GULNetwork", package: "GoogleUtilities"),
- .product(name: "nanopb", package: "nanopb"),
- ],
- path: "FirebaseAnalyticsWithoutAdIdSupportWrapper",
- linkerSettings: [
- .linkedLibrary("sqlite3"),
- .linkedLibrary("c++"),
- .linkedLibrary("z"),
- .linkedFramework("StoreKit"),
- ]
- ),
- .target(
- name: "FirebaseAnalyticsOnDeviceConversionTarget",
- dependencies: [
- .product(name: "GoogleAppMeasurementOnDeviceConversion",
- package: "GoogleAppMeasurement",
- condition: .when(platforms: [.iOS])),
- ],
- path: "FirebaseAnalyticsOnDeviceConversionWrapper",
- linkerSettings: [
- .linkedLibrary("c++"),
- ]
- ),
- .target(
- name: "FirebaseAppDistributionTarget",
- dependencies: [.target(name: "FirebaseAppDistribution",
- condition: .when(platforms: [.iOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseAppDistributionWrap"
- ),
- .target(
- name: "FirebaseAppDistribution",
- dependencies: [
- "FirebaseCore",
- "FirebaseInstallations",
- .product(name: "GULAppDelegateSwizzler", package: "GoogleUtilities"),
- .product(name: "GULUserDefaults", package: "GoogleUtilities"),
- ],
- path: "FirebaseAppDistribution/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .testTarget(
- name: "AppDistributionUnit",
- dependencies: ["FirebaseAppDistribution", "OCMock"],
- path: "FirebaseAppDistribution/Tests/Unit",
- exclude: ["Swift/"],
- resources: [.process("Resources")],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .testTarget(
- name: "AppDistributionUnitSwift",
- dependencies: ["FirebaseAppDistribution"],
- path: "FirebaseAppDistribution/Tests/Unit/Swift",
- cSettings: [
- .headerSearchPath("../../../.."),
- ]
- ),
- .target(
- name: "FirebaseAuth",
- dependencies: [
- "FirebaseCore",
- .product(name: "GULAppDelegateSwizzler", package: "GoogleUtilities"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "GTMSessionFetcherCore", package: "GTMSessionFetcher"),
- ],
- path: "FirebaseAuth/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- ],
- linkerSettings: [
- .linkedFramework("Security"),
- .linkedFramework("SafariServices", .when(platforms: [.iOS])),
- ]
- ),
- // Internal headers only for consuming from Swift.
- .target(
- name: "FirebaseAuthInterop",
- path: "FirebaseAuth/Interop",
- exclude: [
- "CMakeLists.txt",
- ],
- publicHeadersPath: ".",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .testTarget(
- name: "AuthUnit",
- dependencies: ["FirebaseAuth", "OCMock", "HeartbeatLoggingTestUtils"],
- path: "FirebaseAuth/Tests/Unit",
- exclude: [
- "FIRAuthKeychainServicesTests.m", // TODO: figure out SPM keychain testing
- "FIRAuthTests.m",
- "FIRUserTests.m",
- ],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .target(
- name: "FirebaseAuthCombineSwift",
- dependencies: ["FirebaseAuth"],
- path: "FirebaseCombineSwift/Sources/Auth"
- ),
- .target(
- name: "FirebaseFirestoreCombineSwift",
- dependencies: [
- "FirebaseFirestore",
- "FirebaseFirestoreSwift",
- ],
- path: "FirebaseCombineSwift/Sources/Firestore"
- ),
- .target(
- name: "FirebaseStorageCombineSwift",
- dependencies: [
- "FirebaseStorage",
- ],
- path: "FirebaseCombineSwift/Sources/Storage"
- ),
- .target(
- name: "FirebaseCrashlytics",
- dependencies: ["FirebaseCore", "FirebaseInstallations", "FirebaseSessions",
- .product(name: "GoogleDataTransport", package: "GoogleDataTransport"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "FBLPromises", package: "Promises"),
- .product(name: "nanopb", package: "nanopb")],
- path: "Crashlytics",
- exclude: [
- "run",
- "CHANGELOG.md",
- "LICENSE",
- "README.md",
- "ProtoSupport/",
- "UnitTests/",
- "generate_project.sh",
- "upload-symbols",
- "third_party/libunwind/LICENSE",
- ],
- sources: [
- "Crashlytics/",
- "Protogen/",
- "Shared/",
- "third_party/libunwind/dwarf.h",
- ],
- publicHeadersPath: "Crashlytics/Public",
- cSettings: [
- .headerSearchPath(".."),
- .define("DISPLAY_VERSION", to: firebaseVersion),
- .define("CLS_SDK_NAME", to: "Crashlytics iOS SDK", .when(platforms: [.iOS])),
- .define("CLS_SDK_NAME", to: "Crashlytics macOS SDK", .when(platforms: [.macOS])),
- .define("CLS_SDK_NAME", to: "Crashlytics tvOS SDK", .when(platforms: [.tvOS])),
- .define("CLS_SDK_NAME", to: "Crashlytics watchOS SDK", .when(platforms: [.watchOS])),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- ],
- linkerSettings: [
- .linkedFramework("Security"),
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .macOS, .tvOS])),
- ]
- ),
- .testTarget(
- name: "FirebaseCrashlyticsUnit",
- dependencies: ["FirebaseCrashlytics", "OCMock"],
- path: "Crashlytics/UnitTests",
- resources: [
- .copy("FIRCLSMachO/machO_data"),
- .copy("Data"),
- ],
- cSettings: [
- .headerSearchPath("../.."),
- .define("DISPLAY_VERSION", to: firebaseVersion),
- .define("CLS_SDK_NAME", to: "Crashlytics iOS SDK", .when(platforms: [.iOS])),
- .define("CLS_SDK_NAME", to: "Crashlytics macOS SDK", .when(platforms: [.macOS])),
- .define("CLS_SDK_NAME", to: "Crashlytics tvOS SDK", .when(platforms: [.tvOS])),
- .define("CLS_SDK_NAME", to: "Crashlytics watchOS SDK", .when(platforms: [.watchOS])),
- ]
- ),
- .target(
- name: "FirebaseDatabase",
- dependencies: [
- "FirebaseCore",
- "leveldb",
- ],
- path: "FirebaseDatabase/Sources",
- exclude: [
- "third_party/Wrap-leveldb/LICENSE",
- "third_party/SocketRocket/LICENSE",
- "third_party/FImmutableSortedDictionary/LICENSE",
- "third_party/SocketRocket/aa2297808c225710e267afece4439c256f6efdb3",
- ],
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- ],
- linkerSettings: [
- .linkedFramework("CFNetwork"),
- .linkedFramework("Security"),
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .macOS, .tvOS])),
- .linkedFramework("WatchKit", .when(platforms: [.watchOS])),
- ]
- ),
- .testTarget(
- name: "DatabaseUnit",
- dependencies: ["FirebaseDatabase", "OCMock", "SharedTestUtilities"],
- path: "FirebaseDatabase/Tests/",
- exclude: [
- // Disable Swift tests as mixed targets are not supported (Xcode 12.4).
- "Unit/Swift",
- "Integration/",
- ],
- resources: [.process("Resources")],
- cSettings: [
- .headerSearchPath("../.."),
- ]
- ),
- .testTarget(
- name: "DatabaseUnitSwift",
- dependencies: ["FirebaseDatabase"],
- path: "FirebaseDatabase/Tests/Unit/Swift",
- cSettings: [
- .headerSearchPath("../.."),
- ]
- ),
- .target(
- name: "FirebaseDatabaseSwift",
- dependencies: ["FirebaseDatabase", "FirebaseSharedSwift"],
- path: "FirebaseDatabaseSwift/Sources"
- ),
- .testTarget(
- name: "FirebaseDatabaseSwiftTests",
- dependencies: ["FirebaseDatabase", "FirebaseDatabaseSwift"],
- path: "FirebaseDatabaseSwift/Tests/"
- ),
- .target(
- name: "FirebaseSharedSwift",
- path: "FirebaseSharedSwift/Sources",
- exclude: [
- "third_party/FirebaseDataEncoder/LICENSE",
- "third_party/FirebaseDataEncoder/METADATA",
- ]
- ),
- .testTarget(
- name: "FirebaseSharedSwiftTests",
- dependencies: ["FirebaseSharedSwift"],
- path: "FirebaseSharedSwift/Tests/"
- ),
- .target(
- name: "FirebaseDynamicLinksTarget",
- dependencies: [.target(name: "FirebaseDynamicLinks",
- condition: .when(platforms: [.iOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseDynamicLinksWrap"
- ),
- .target(
- name: "FirebaseDynamicLinks",
- dependencies: ["FirebaseCore"],
- path: "FirebaseDynamicLinks/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- .define("FIRDynamicLinks3P", to: "1"),
- .define("GIN_SCION_LOGGING", to: "1"),
- ],
- linkerSettings: [
- .linkedFramework("QuartzCore"),
- ]
- ),
- .target(
- name: "FirebaseFirestoreTarget",
- dependencies: [.target(name: "FirebaseFirestore",
- condition: .when(platforms: [.iOS, .tvOS, .macOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseFirestoreWrap"
- ),
- .target(
- name: "FirebaseFirestore",
- dependencies: [
- "FirebaseCore",
- "leveldb",
- .product(name: "nanopb", package: "nanopb"),
- .product(name: "abseil", package: "abseil"),
- .product(name: "gRPC-cpp", package: "gRPC"),
- ],
- path: "Firestore",
- exclude: [
- "CHANGELOG.md",
- "CMakeLists.txt",
- "Example/",
- "LICENSE",
- "Protos/CMakeLists.txt",
- "Protos/Podfile",
- "Protos/README.md",
- "Protos/build_protos.py",
- "Protos/cpp/",
- "Protos/lib/",
- "Protos/nanopb_cpp_generator.py",
- "Protos/protos/",
- "README.md",
- "Source/CMakeLists.txt",
- "Swift/",
- "core/CMakeLists.txt",
- "core/src/util/config_detected.h.in",
- "core/test/",
- "fuzzing/",
- "test.sh",
- // Swift PM doesn't recognize hpp files, so we're relying on search paths
- // to find third_party/nlohmann_json/json.hpp.
- "third_party/",
- // Exclude alternate implementations for other platforms
- "core/src/remote/connectivity_monitor_noop.cc",
- "core/src/util/filesystem_win.cc",
- "core/src/util/log_stdio.cc",
- "core/src/util/secure_random_openssl.cc",
- ],
- sources: [
- "Source/",
- "Protos/nanopb/",
- "core/include/",
- "core/src",
- ],
- publicHeadersPath: "Source/Public",
- cSettings: [
- .headerSearchPath("../"),
- .headerSearchPath("Source/Public/FirebaseFirestore"),
- .headerSearchPath("Protos/nanopb"),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- .define("FIRFirestore_VERSION", to: firebaseVersion),
- ],
- linkerSettings: [
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .macOS, .tvOS])),
- .linkedFramework("UIKit", .when(platforms: [.iOS, .tvOS])),
- .linkedLibrary("c++"),
- ]
- ),
- .target(
- name: "FirebaseFirestoreSwiftTarget",
- dependencies: [.target(name: "FirebaseFirestoreSwift",
- condition: .when(platforms: [.iOS, .tvOS, .macOS]))],
- path: "SwiftPM-PlatformExclude/FirebaseFirestoreSwiftWrap"
- ),
- .target(
- name: "FirebaseFirestoreSwift",
- dependencies: [
- "FirebaseCore",
- "FirebaseCoreExtension",
- "FirebaseFirestore",
- "FirebaseSharedSwift",
- ],
- path: "Firestore",
- exclude: [
- "CHANGELOG.md",
- "CMakeLists.txt",
- "Example/",
- "LICENSE",
- "Protos/",
- "README.md",
- "Source/",
- "core/",
- "fuzzing/",
- "test.sh",
- "Swift/CHANGELOG.md",
- "Swift/README.md",
- "Swift/Tests/",
- "third_party/nlohmann_json",
- ],
- sources: [
- "Swift/Source/",
- ]
- ),
- // MARK: - Firebase Functions
- .target(
- name: "FirebaseFunctions",
- dependencies: [
- "FirebaseAppCheckInterop",
- "FirebaseAuthInterop",
- "FirebaseCore",
- "FirebaseCoreExtension",
- "FirebaseMessagingInterop",
- "FirebaseSharedSwift",
- .product(name: "GTMSessionFetcherCore", package: "GTMSessionFetcher"),
- ],
- path: "FirebaseFunctions/Sources"
- ),
- .testTarget(
- name: "FirebaseFunctionsUnit",
- dependencies: ["FirebaseFunctions",
- "FirebaseAppCheckInterop",
- "FirebaseAuthInterop",
- "FirebaseMessagingInterop",
- "SharedTestUtilities"],
- path: "FirebaseFunctions/Tests/Unit",
- cSettings: [
- .headerSearchPath("../../../"),
- ]
- ),
- .testTarget(
- name: "FirebaseFunctionsIntegration",
- dependencies: ["FirebaseFunctions",
- "SharedTestUtilities"],
- path: "FirebaseFunctions/Tests/Integration"
- ),
- .testTarget(
- name: "FirebaseFunctionsObjCIntegration",
- dependencies: ["FirebaseFunctions",
- "SharedTestUtilities"],
- path: "FirebaseFunctions/Tests/ObjCIntegration",
- // See https://forums.swift.org/t/importing-swift-libraries-from-objective-c/56730
- exclude: [
- "ObjCPPAPITests.mm",
- ],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .target(
- name: "FirebaseFunctionsCombineSwift",
- dependencies: ["FirebaseFunctions"],
- path: "FirebaseCombineSwift/Sources/Functions"
- ),
- .testTarget(
- name: "FunctionsCombineUnit",
- dependencies: ["FirebaseFunctionsCombineSwift",
- "SharedTestUtilities"],
- path: "FirebaseFunctions/Tests/CombineUnit"
- ),
- // MARK: - Firebase In App Messaging
- .target(
- name: "FirebaseInAppMessagingTarget",
- dependencies: [
- .target(name: "FirebaseInAppMessaging", condition: .when(platforms: [.iOS, .tvOS])),
- ],
- path: "SwiftPM-PlatformExclude/FirebaseInAppMessagingWrap"
- ),
- .target(
- name: "FirebaseInAppMessaging",
- dependencies: [
- "FirebaseCore",
- "FirebaseInstallations",
- "FirebaseABTesting",
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "nanopb", package: "nanopb"),
- .target(name: "FirebaseInAppMessaging_iOS", condition: .when(platforms: [.iOS])),
- ],
- path: "FirebaseInAppMessaging/Sources",
- exclude: [
- "DefaultUI/CHANGELOG.md",
- "DefaultUI/README.md",
- ],
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- ]
- ),
- .target(
- name: "FirebaseInAppMessaging_iOS",
- path: "FirebaseInAppMessaging/iOS",
- resources: [.process("Resources")]
- ),
- .target(
- name: "FirebaseInAppMessagingSwift",
- dependencies: ["FirebaseInAppMessaging"],
- path: "FirebaseInAppMessaging/Swift/Source"
- ),
- .target(
- name: "FirebaseInstallations",
- dependencies: [
- "FirebaseCore",
- .product(name: "FBLPromises", package: "Promises"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "GULUserDefaults", package: "GoogleUtilities"),
- ],
- path: "FirebaseInstallations/Source/Library",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../../"),
- ],
- linkerSettings: [
- .linkedFramework("Security"),
- ]
- ),
- .target(
- name: "FirebaseMLModelDownloader",
- dependencies: [
- "FirebaseCore",
- "FirebaseInstallations",
- .product(name: "GoogleDataTransport", package: "GoogleDataTransport"),
- .product(name: "GULLogger", package: "GoogleUtilities"),
- "SwiftProtobuf",
- ],
- path: "FirebaseMLModelDownloader/Sources",
- exclude: [
- "proto/firebase_ml_log_sdk.proto",
- ],
- cSettings: [
- .define("FIRMLModelDownloader_VERSION", to: firebaseVersion),
- ]
- ),
- .testTarget(
- name: "FirebaseMLModelDownloaderUnit",
- dependencies: ["FirebaseMLModelDownloader"],
- path: "FirebaseMLModelDownloader/Tests/Unit"
- ),
- .target(
- name: "FirebaseMessaging",
- dependencies: [
- "FirebaseCore",
- "FirebaseInstallations",
- .product(name: "GULAppDelegateSwizzler", package: "GoogleUtilities"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "GULReachability", package: "GoogleUtilities"),
- .product(name: "GULUserDefaults", package: "GoogleUtilities"),
- .product(name: "GoogleDataTransport", package: "GoogleDataTransport"),
- .product(name: "nanopb", package: "nanopb"),
- ],
- path: "FirebaseMessaging/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- ],
- linkerSettings: [
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .macOS, .tvOS])),
- ]
- ),
- // Internal headers only for consuming from Swift.
- .target(
- name: "FirebaseMessagingInterop",
- path: "FirebaseMessaging/Interop",
- publicHeadersPath: ".",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .testTarget(
- name: "MessagingUnit",
- dependencies: ["FirebaseMessaging", "SharedTestUtilities", "OCMock"],
- path: "FirebaseMessaging/Tests/UnitTests",
- exclude: [
- "FIRMessagingContextManagerServiceTest.m", // TODO: Adapt its NSBundle usage to SPM.
- ],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .target(
- name: "FirebasePerformanceTarget",
- dependencies: [.target(name: "FirebasePerformance",
- condition: .when(platforms: [.iOS, .tvOS]))],
- path: "SwiftPM-PlatformExclude/FirebasePerformanceWrap"
- ),
- .target(
- name: "FirebasePerformance",
- dependencies: [
- "FirebaseCore",
- "FirebaseInstallations",
- "FirebaseRemoteConfig",
- "FirebaseSessions",
- .product(name: "GoogleDataTransport", package: "GoogleDataTransport"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "GULISASwizzler", package: "GoogleUtilities"),
- .product(name: "GULMethodSwizzler", package: "GoogleUtilities"),
- .product(name: "GULUserDefaults", package: "GoogleUtilities"),
- .product(name: "nanopb", package: "nanopb"),
- ],
- path: "FirebasePerformance/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- .define("FIRPerformance_LIB_VERSION", to: firebaseVersion),
- ],
- linkerSettings: [
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .tvOS])),
- .linkedFramework("MobileCoreServices", .when(platforms: [.iOS, .tvOS])),
- .linkedFramework("QuartzCore", .when(platforms: [.iOS, .tvOS])),
- ]
- ),
- .testTarget(
- name: "PerformanceUnit",
- dependencies: [
- "FirebasePerformanceTarget",
- "OCMock",
- "SharedTestUtilities",
- "GCDWebServer",
- ],
- path: "FirebasePerformance/Tests/Unit",
- resources: [
- .process("FPRURLFilterTests-Info.plist"),
- .process("Server/smallDownloadFile"),
- .process("Server/bigDownloadFile"),
- ],
- cSettings: [
- .headerSearchPath("../../.."),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- ]
- ),
- .target(
- name: "SharedTestUtilities",
- dependencies: ["FirebaseCore",
- "FirebaseAppCheckInterop",
- "FirebaseAuthInterop",
- "FirebaseMessagingInterop",
- "GoogleDataTransport",
- "OCMock"],
- path: "SharedTestUtilities",
- publicHeadersPath: "./",
- cSettings: [
- .headerSearchPath("../"),
- ]
- ),
- // MARK: - Firebase Remote Config
- .target(
- name: "FirebaseRemoteConfig",
- dependencies: [
- "FirebaseCore",
- "FirebaseABTesting",
- "FirebaseInstallations",
- .product(name: "GULNSData", package: "GoogleUtilities"),
- ],
- path: "FirebaseRemoteConfig/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .testTarget(
- name: "RemoteConfigUnit",
- dependencies: ["FirebaseRemoteConfig", "OCMock"],
- path: "FirebaseRemoteConfig/Tests/Unit",
- exclude: [
- // Need to be evaluated/ported to RC V2.
- "RCNConfigAnalyticsTest.m",
- "RCNConfigSettingsTest.m",
- "RCNConfigTest.m",
- "RCNRemoteConfig+FIRAppTest.m",
- "RCNThrottlingTests.m",
- ],
- resources: [
- .process("SecondApp-GoogleService-Info.plist"),
- .process("Defaults-testInfo.plist"),
- .process("TestABTPayload.txt"),
- ],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .target(
- name: "FirebaseRemoteConfigSwift",
- dependencies: [
- "FirebaseRemoteConfig",
- "FirebaseSharedSwift",
- ],
- path: "FirebaseRemoteConfigSwift/Sources"
- ),
- .testTarget(
- name: "RemoteConfigFakeConsole",
- dependencies: ["FirebaseRemoteConfigSwift",
- "RemoteConfigFakeConsoleObjC"],
- path: "FirebaseRemoteConfigSwift/Tests",
- exclude: [
- "AccessToken.json",
- "README.md",
- "ObjC/",
- ],
- resources: [
- .process("Defaults-testInfo.plist"),
- ],
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .target(
- name: "RemoteConfigFakeConsoleObjC",
- dependencies: ["OCMock"],
- path: "FirebaseRemoteConfigSwift/Tests/ObjC",
- publicHeadersPath: ".",
- cSettings: [
- .headerSearchPath("../../../"),
- ]
- ),
- // MARK: - Firebase Sessions
- .target(
- name: "FirebaseSessions",
- dependencies: [
- "FirebaseCore",
- "FirebaseInstallations",
- "FirebaseCoreExtension",
- "FirebaseSessionsObjC",
- .product(name: "Promises", package: "Promises"),
- .product(name: "GoogleDataTransport", package: "GoogleDataTransport"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- ],
- path: "FirebaseSessions/Sources",
- cSettings: [
- .headerSearchPath(".."),
- .define("DISPLAY_VERSION", to: firebaseVersion),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- ],
- linkerSettings: [
- .linkedFramework("Security"),
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .macOS, .tvOS])),
- ]
- ),
- // The Sessions SDK is Swift-first with Objective-C code to support
- // nanopb. Because Swift Package Manager doesn't support mixed
- // language targets, the ObjC code has been extracted out into
- // a separate target.
- .target(
- name: "FirebaseSessionsObjC",
- dependencies: [
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- .product(name: "nanopb", package: "nanopb"),
- ],
- path: "FirebaseSessions",
- exclude: [
- "README.md",
- "Sources/",
- "Tests/",
- "ProtoSupport/",
- "generate_project.sh",
- "generate_protos.sh",
- "generate_testapp.sh",
- ],
- publicHeadersPath: "SourcesObjC",
- cSettings: [
- .headerSearchPath(".."),
- .define("DISPLAY_VERSION", to: firebaseVersion),
- .define("PB_FIELD_32BIT", to: "1"),
- .define("PB_NO_PACKED_STRUCTS", to: "1"),
- .define("PB_ENABLE_MALLOC", to: "1"),
- ],
- linkerSettings: [
- .linkedFramework("Security"),
- .linkedFramework("SystemConfiguration", .when(platforms: [.iOS, .macOS, .tvOS])),
- ]
- ),
- .testTarget(
- name: "FirebaseSessionsUnit",
- dependencies: ["FirebaseSessions"],
- path: "FirebaseSessions/Tests/Unit"
- ),
- // MARK: - Firebase Storage
- .target(
- name: "FirebaseStorage",
- dependencies: [
- "FirebaseAppCheckInterop",
- "FirebaseAuthInterop",
- "FirebaseCore",
- "FirebaseCoreExtension",
- .product(name: "GTMSessionFetcherCore", package: "GTMSessionFetcher"),
- ],
- path: "FirebaseStorage/Sources"
- ),
- .testTarget(
- name: "FirebaseStorageUnit",
- dependencies: ["FirebaseStorage",
- "SharedTestUtilities"],
- path: "FirebaseStorage/Tests/Unit",
- cSettings: [
- .headerSearchPath("../../../"),
- ]
- ),
- .testTarget(
- name: "StorageObjCIntegration",
- dependencies: ["FirebaseStorage"],
- path: "FirebaseStorage/Tests/ObjCIntegration",
- exclude: [
- // See https://forums.swift.org/t/importing-swift-libraries-from-objective-c/56730
- "FIRStorageIntegrationTests.m",
- "ObjCPPAPITests.mm",
- "Credentials.h",
- ],
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- .testTarget(
- name: "swift-test",
- dependencies: [
- "Firebase",
- "FirebaseAuth",
- "FirebaseAppCheck",
- "FirebaseABTesting",
- "FirebaseAnalytics",
- "FirebaseAnalyticsSwift",
- .target(name: "FirebaseAppDistribution",
- condition: .when(platforms: [.iOS])),
- "FirebaseAuthCombineSwift",
- "FirebaseFirestoreCombineSwift",
- "FirebaseFunctionsCombineSwift",
- "FirebaseStorageCombineSwift",
- "FirebaseCrashlytics",
- "FirebaseCore",
- "FirebaseDatabase",
- "FirebaseDynamicLinks",
- "FirebaseFirestore",
- "FirebaseFirestoreSwift",
- "FirebaseFunctions",
- "FirebaseInAppMessaging",
- .target(name: "FirebaseInAppMessagingSwift",
- condition: .when(platforms: [.iOS, .tvOS])),
- "FirebaseInstallations",
- "FirebaseMessaging",
- .target(name: "FirebasePerformance",
- condition: .when(platforms: [.iOS, .tvOS])),
- "FirebaseRemoteConfig",
- "FirebaseSessions",
- "FirebaseStorage",
- .product(name: "nanopb", package: "nanopb"),
- ],
- path: "SwiftPMTests/swift-test"
- ),
- .testTarget(
- name: "analytics-import-test",
- dependencies: [
- "FirebaseAnalyticsSwiftTarget",
- "FirebaseAnalyticsWrapper",
- "Firebase",
- ],
- path: "SwiftPMTests/analytics-import-test"
- ),
- .testTarget(
- name: "objc-import-test",
- dependencies: [
- "Firebase",
- "FirebaseAuth",
- "FirebaseABTesting",
- "FirebaseAppCheck",
- .target(name: "FirebaseAppDistribution",
- condition: .when(platforms: [.iOS])),
- "FirebaseCrashlytics",
- "FirebaseCore",
- "FirebaseDatabase",
- "FirebaseDynamicLinks",
- "FirebaseFirestore",
- "FirebaseFunctions",
- "FirebaseInAppMessaging",
- "FirebaseInstallations",
- "FirebaseMessaging",
- .target(name: "FirebasePerformance",
- condition: .when(platforms: [.iOS, .tvOS])),
- "FirebaseRemoteConfig",
- "FirebaseStorage",
- ],
- path: "SwiftPMTests/objc-import-test"
- ),
- .testTarget(
- name: "version-test",
- dependencies: [
- "FirebaseCore",
- ],
- path: "SwiftPMTests/version-test",
- cSettings: [
- .define("FIR_VERSION", to: firebaseVersion),
- ]
- ),
- // MARK: - Firebase App Check
- .target(name: "FirebaseAppCheck",
- dependencies: [
- "FirebaseCore",
- .product(name: "FBLPromises", package: "Promises"),
- .product(name: "GULEnvironment", package: "GoogleUtilities"),
- ],
- path: "FirebaseAppCheck/Sources",
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../.."),
- ],
- linkerSettings: [
- .linkedFramework("DeviceCheck", .when(platforms: [.iOS, .macOS, .tvOS])),
- ]),
- // Internal headers only for consuming from Swift.
- .target(
- name: "FirebaseAppCheckInterop",
- path: "FirebaseAppCheck/Interop",
- exclude: [
- "CMakeLists.txt",
- ],
- publicHeadersPath: ".",
- cSettings: [
- .headerSearchPath("../../"),
- ]
- ),
- .testTarget(
- name: "AppCheckUnit",
- dependencies: [
- "FirebaseAppCheck",
- "OCMock",
- "SharedTestUtilities",
- "HeartbeatLoggingTestUtils",
- ],
- path: "FirebaseAppCheck/Tests",
- exclude: [
- // Disable Swift tests as mixed targets are not supported (Xcode 12.3).
- "Unit/Swift",
- ],
- resources: [
- .process("Fixture"),
- ],
- cSettings: [
- .headerSearchPath("../.."),
- ]
- ),
- .testTarget(
- name: "AppCheckUnitSwift",
- dependencies: ["FirebaseAppCheck"],
- path: "FirebaseAppCheck/Tests/Unit/Swift",
- cSettings: [
- .headerSearchPath("../.."),
- ]
- ),
- // MARK: Testing support
- .target(
- name: "FirebaseFirestoreTestingSupport",
- dependencies: ["FirebaseFirestore"],
- path: "FirebaseTestingSupport/Firestore/Sources",
- publicHeadersPath: "./",
- cSettings: [
- .headerSearchPath("../../.."),
- .headerSearchPath("../../../Firestore/Source/Public/FirebaseFirestore"),
- ]
- ),
- .testTarget(
- name: "FirestoreTestingSupportTests",
- dependencies: ["FirebaseFirestoreTestingSupport"],
- path: "FirebaseTestingSupport/Firestore/Tests",
- cSettings: [
- .headerSearchPath("../../.."),
- ]
- ),
- ],
- cLanguageStandard: .c99,
- cxxLanguageStandard: CXXLanguageStandard.gnucxx14
- )
- if ProcessInfo.processInfo.environment["FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT"] != nil {
- if let GoogleAppMeasurementIndex = package.dependencies
- .firstIndex(where: { $0.name == "GoogleAppMeasurement" }) {
- package.dependencies[GoogleAppMeasurementIndex] = .package(
- name: "GoogleAppMeasurement",
- url: "https://github.com/google/GoogleAppMeasurement.git",
- .branch("main")
- )
- }
- }
|