Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ Pod::Spec.new do |s|
s.license = { :file => '../LICENSE' }
s.authors = 'The Chromium Authors'
s.source = { :path => '.' }
s.source_files = 'cloud_functions/Sources/cloud_functions/**/*.{h,m}'
s.public_header_files = 'cloud_functions/Sources/cloud_functions/include/*.h'
s.source_files = 'cloud_functions/Sources/**/*.swift'
s.ios.deployment_target = '13.0'

s.swift_version = '5.0'

# Flutter dependencies
s.dependency 'Flutter'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,6 @@ let package = Package(
],
resources: [
.process("Resources"),
],
cSettings: [
.headerSearchPath("include"),
.define("LIBRARY_VERSION", to: "\"\(library_version)\""),
.define("LIBRARY_NAME", to: "\"flutter-fire-fn\""),
]
),
]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Auto-generated file. Do not edit.
public let versionNumber = "5.3.4"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cloud_functions will need adding here to update Constants.swift when we publish release: https://github.com/firebase/flutterfire/blob/feat/cloud_functions_stream_support/scripts/generate_versions_spm.dart#L134

This file was deleted.

Loading
Loading