{"id":46090465,"url":"https://github.com/akaffenberger/firebase-ios-sdk-xcframeworks","last_synced_at":"2026-05-06T04:01:53.751Z","repository":{"id":37544612,"uuid":"434773311","full_name":"akaffenberger/firebase-ios-sdk-xcframeworks","owner":"akaffenberger","description":"A small mirror for https://github.com/firebase/firebase-ios-sdk, to add support for binary (xcframework) distribution with swift package manager.","archived":false,"fork":false,"pushed_at":"2026-02-26T01:23:14.000Z","size":4086,"stargazers_count":161,"open_issues_count":11,"forks_count":39,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-03-01T18:43:15.076Z","etag":null,"topics":["binary","firebase","spm","swift"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akaffenberger.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-12-04T00:51:54.000Z","updated_at":"2026-02-12T14:10:07.000Z","dependencies_parsed_at":"2025-01-20T20:38:38.354Z","dependency_job_id":"d2810e47-5bc8-426c-a22b-bbeccc7cdbea","html_url":"https://github.com/akaffenberger/firebase-ios-sdk-xcframeworks","commit_stats":null,"previous_names":[],"tags_count":64,"template":false,"template_full_name":null,"purl":"pkg:github/akaffenberger/firebase-ios-sdk-xcframeworks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaffenberger%2Ffirebase-ios-sdk-xcframeworks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaffenberger%2Ffirebase-ios-sdk-xcframeworks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaffenberger%2Ffirebase-ios-sdk-xcframeworks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaffenberger%2Ffirebase-ios-sdk-xcframeworks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akaffenberger","download_url":"https://codeload.github.com/akaffenberger/firebase-ios-sdk-xcframeworks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaffenberger%2Ffirebase-ios-sdk-xcframeworks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["binary","firebase","spm","swift"],"created_at":"2026-03-01T17:36:18.149Z","updated_at":"2026-05-06T04:01:53.727Z","avatar_url":"https://github.com/akaffenberger.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Firebase xcframework integration with SPM\n\nA small mirror for https://github.com/firebase/firebase-ios-sdk, to add support for using their binary dependencies (xcframeworks) with swift package manager. \n\nThis repo contains a [Package.swift](https://github.com/akaffenberger/firebase-ios-sdk-xcframeworks/blob/master/Package.swift) file, which uses a `binaryTarget` for all Firebase libraries (xcframework files are hosted in github [releases](https://github.com/akaffenberger/firebase-ios-sdk-xcframeworks/releases)). \n\n## Official SPM Support\n\nFirebase currently supports SPM integration, see the [official SDK integration instructions](https://github.com/firebase/firebase-ios-sdk#installation). This repo is an alternative for integrating with their pre-built xcframeworks for faster build times. See in depth discussion for official SPM support for xcframeworks [here](https://github.com/firebase/firebase-ios-sdk/issues/6564).\n\n# Installation\n- Add the package: \n    ```\n    // swift-tools-version:5.3\n    // The swift-tools-version declares the minimum version of Swift required to build this package.\n\n    import PackageDescription\n\n    let package = Package(\n        name: \"MyLibrary\",\n        platforms: [.iOS(.v11)],\n        products: [\n            .library(name: \"MyLibrary\", targets: [\"MyLibraryTarget\"])\n        ],\n        dependencies: [\n            .package(\n                name: \"Firebase\",\n                url: \"https://github.com/akaffenberger/firebase-ios-sdk-xcframeworks.git\",\n                .exact(\"8.10.0\")\n            ),\n        ],\n        targets: [\n            .target(\n                name: \"MyLibraryTarget\",\n                dependencies: [\n                    .product(name: \"Google-Mobile-Ads-SDK\", package: \"Firebase\"),\n                    .product(name: \"FirebaseAnalytics\", package: \"Firebase\")\n                ]\n            )\n        ]\n    )\n    ```\n\n- Add `-ObjC` to Build Settings -\u003e Other Linker Flags\n- Some Firebase frameworks require resource bundles. Drag and drop the ones you need into your target's Copy Bundle Resources Phase:\n\n  ![](./assets/draganddrop.gif)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakaffenberger%2Ffirebase-ios-sdk-xcframeworks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakaffenberger%2Ffirebase-ios-sdk-xcframeworks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakaffenberger%2Ffirebase-ios-sdk-xcframeworks/lists"}