Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 3fae6e2

Browse files
committed
Make compiling working in app by requiring 'Firebase/Database' and setting ios.deployment_target to '6.0'
1 parent 09e7832 commit 3fae6e2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/cloud_functions/ios/cloud_functions.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'cloud_functions'
6-
s.version = '0.0.1'
6+
s.version = '0.0.2'
77
s.summary = 'A new flutter plugin project.'
88
s.description = <<-DESC
99
A new flutter plugin project.
@@ -14,10 +14,11 @@ A new flutter plugin project.
1414
s.source = { :path => '.' }
1515
s.source_files = 'Classes/**/*'
1616
s.public_header_files = 'Classes/**/*.h'
17+
s.ios.deployment_target = '6.0'
1718
s.dependency 'Flutter'
1819
s.dependency 'Firebase/Core'
20+
s.dependency 'Firebase/Database'
1921
s.dependency 'Firebase/Functions'
20-
21-
s.ios.deployment_target = '8.0'
22+
s.static_framework = true
2223
end
2324

0 commit comments

Comments
 (0)