rns-nativecall 0.8.9 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/CallModule.h +1 -1
- package/package.json +1 -1
- package/rns-nativecall.podspec +6 -2
package/ios/CallModule.h
CHANGED
package/package.json
CHANGED
package/rns-nativecall.podspec
CHANGED
|
@@ -9,12 +9,16 @@ Pod::Spec.new do |s|
|
|
|
9
9
|
s.homepage = package["homepage"]
|
|
10
10
|
s.license = package["license"]
|
|
11
11
|
s.authors = package["author"]
|
|
12
|
-
|
|
12
|
+
|
|
13
|
+
# UPDATE: Move this to 13.0 or at least 12.0.
|
|
14
|
+
# iOS 13 is required for the SceneDelegate/Window logic we wrote.
|
|
15
|
+
s.platforms = { :ios => "13.0" }
|
|
16
|
+
|
|
13
17
|
s.source = { :git => "https://github.com/raiidr.git", :tag => "#{s.version}" }
|
|
14
18
|
|
|
15
19
|
s.source_files = "ios/**/*.{h,m,mm}"
|
|
16
20
|
|
|
17
|
-
#
|
|
21
|
+
# These ensure the native compiler links the correct Apple libraries
|
|
18
22
|
s.frameworks = "CallKit", "AVFoundation"
|
|
19
23
|
|
|
20
24
|
s.dependency "React-Core"
|