@@ -53,9 +53,6 @@ Pod::Spec.new do |s|
53
53
# If this Pod runs only on iOS or OS X, then specify the platform and
54
54
# the deployment target. You can optionally include the target after the platform.
55
55
56
- s . platform = :ios
57
- # s.platform = :ios, "5.0"
58
-
59
56
# When using multiple platforms
60
57
s . ios . deployment_target = "8.0"
61
58
# s.osx.deployment_target = "10.7"
@@ -70,45 +67,14 @@ Pod::Spec.new do |s|
70
67
#
71
68
72
69
# s.source = { :git => "https://github.com/fullstackreact/react-native-firestack.git", :tag => "#{s.version}" }
73
- s . source = { :git => repo [ 'url' ] , :branch => "feature/remoteConfig" }
74
-
75
-
76
- # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
77
- #
78
- # CocoaPods is smart about how it includes source code. For source files
79
- # giving a folder will include any swift, h, m, mm, c & cpp files.
80
- # For header files it will include any header in the folder.
81
- # Not including the public_header_files will make all headers public.
82
- #
83
-
70
+ s . source = { :git => repo [ 'url' ] , :tag => "feature/remoteConfig" }
84
71
# s.source_files = "ios/Firestack"#, "ios/Firestack/*.{h,m}"
85
- # s.exclude_files = "Classes/Exclude"
86
-
87
- # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
88
- #
89
- # A list of resources included with the Pod. These are copied into the
90
- # target bundle with a build phase script. Anything else will be cleaned.
91
- # You can preserve files from being cleaned, please don't preserve
92
- # non-essential files like tests, examples and documentation.
93
- #
94
-
95
- # s.resource = "icon.png"
96
- # s.resources = "Resources/*.png"
97
72
98
73
s . source_files = 'ios/Firestack/**/*.{h,m}'
99
- s . preserve_paths = " **/*.js"
100
- s . dependency 'React'
74
+ s . preserve_paths = 'README.md' , 'package.json' , ' **/*.js'
75
+ # s.preserve_paths = "**/*.js", "ios/Firestack/Pods/**/*.h"
101
76
# s.preserve_paths = ["**/*.js", "ios/Firestack/Pods/**/*"]
102
77
103
-
104
- # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
105
- #
106
- # Link your library with frameworks, or libraries. Libraries do not include
107
- # the lib prefix of their name.
108
- #
109
-
110
- # s.framework = "SomeFramework"
111
- # s.frameworks = "SomeFramework", "AnotherFramework"
112
78
[
113
79
'Firebase/Core' ,
114
80
'Firebase/Auth' ,
@@ -118,6 +84,7 @@ Pod::Spec.new do |s|
118
84
] . each do |lib |
119
85
s . dependency lib
120
86
end
87
+ s . dependency 'React'
121
88
122
89
s . pod_target_xcconfig = {
123
90
'OTHER_LDFLAGS' => '$(inherited) -ObjC -lBOZO'
@@ -127,17 +94,6 @@ Pod::Spec.new do |s|
127
94
s . ios . framework = 'SystemConfiguration' , 'CFNetwork' , 'Security'
128
95
s . ios . libraries = 'c++'
129
96
130
-
131
- # s.library = "iconv"
132
- # s.libraries = "iconv", "xml2"
133
-
134
-
135
- # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
136
- #
137
- # If your library depends on compiler flags you can set them in the xcconfig hash
138
- # where they will only apply to your library. If you depend on other Podspecs
139
- # you can include multiple dependencies to ensure it works.
140
-
141
97
# s.requires_arc = true
142
98
143
99
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
0 commit comments