-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRNSwiftUI.podspec
31 lines (23 loc) · 1.01 KB
/
RNSwiftUI.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
folly_config = get_folly_config()
folly_compiler_flags = folly_config[:compiler_flags]
Pod::UI.puts "[react-native-swiftui] Thank you for using react-native-swiftui ❤️ ! If you enjoy it, please consider sponsoring at https://github.com/sponsors/mgcrea"
Pod::Spec.new do |s|
s.name = "RNSwiftUI"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.platforms = { :ios => '15.1' }
s.source = { :git => "https://github.com/mgcrea/react-native-swiftui.git", :tag => "#{s.version}" }
s.pod_target_xcconfig = {
"DEFINES_MODULE" => "YES",
'SWIFT_COMPILATION_MODE' => 'wholemodule',
}
s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
s.private_header_files = "ios/generated/**/*.h"
# s.dependency 'SwiftUIIntrospect', '~> 1.3'
install_modules_dependencies(s)
end