-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathreact-native-tdlib.podspec
More file actions
18 lines (18 loc) · 771 Bytes
/
Copy pathreact-native-tdlib.podspec
File metadata and controls
18 lines (18 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "react-native-tdlib"
s.version = "2.2.0"
s.summary = "React Native wrapper for TDLib"
s.homepage = "https://github.com/vladlenskiy/react-native-tdlib"
s.license = { :type => "MIT" }
s.author = { "Vladlen Kaveev" => "vkaveev@outlook.com" }
s.platform = :ios, "11.0"
s.source = { :path => "." }
s.source_files = "ios/**/*.h", "ios/**/*.mm"
s.public_header_files = "ios/**/*.h"
# Ship TDLib as an xcframework so both device and simulator slices are linked.
s.vendored_frameworks = "ios/Libraries/tdjson/libtdjson.xcframework"
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)/ios/Libraries/tdjson/include\""
}
s.dependency "React-Core"
end