File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
ios/VydiaRNFileUploader.xcodeproj Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 204204 "$(SRCROOT)/../node_modules/react-native/React/**",
205205 "$(SRCROOT)/../../react-native/React/**",
206206 "$(SRCROOT)/../Example/node_modules/react-native/React/**",
207+ "$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
207208 );
208209 OTHER_LDFLAGS = "-ObjC";
209210 PRODUCT_NAME = "$(TARGET_NAME)";
218219 "$(SRCROOT)/../node_modules/react-native/React/**",
219220 "$(SRCROOT)/../../react-native/React/**",
220221 "$(SRCROOT)/../Example/node_modules/react-native/React/**",
222+ "$(SRCROOT)/../../../ios/Pods/Headers/Public/**",
221223 );
222224 OTHER_LDFLAGS = "-ObjC";
223225 PRODUCT_NAME = "$(TARGET_NAME)";
Original file line number Diff line number Diff line change 1+ require "json"
2+
3+ json = File . read ( File . join ( __dir__ , "package.json" ) )
4+ package = JSON . parse ( json ) . deep_symbolize_keys
5+
6+ Pod ::Spec . new do |s |
7+ s . name = package [ :name ]
8+ s . version = package [ :version ]
9+ s . license = { type : "MIT" }
10+ s . homepage = "https://github.com/Vydia/react-native-background-upload"
11+ s . authors = package [ :author ]
12+ s . summary = package [ :description ]
13+ s . source = { git : package [ :repository ] [ :url ] }
14+ s . source_files = "ios/*.{h,m}"
15+ s . platform = :ios , "8.0"
16+
17+ s . dependency "React"
18+ end
You can’t perform that action at this time.
0 commit comments