We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ca97d9 commit 213f085Copy full SHA for 213f085
.changeset/wet-cups-burn.md
@@ -0,0 +1,5 @@
1
+---
2
+"@infinitered/react-native-mlkit-core": minor
3
4
+
5
+fix: sets static builds in core podspec to prevent dependency conflicts
modules/react-native-mlkit-core/ios/RNMLKitCore.podspec
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
13
s.platform = :ios, '13.0'
14
s.swift_version = '5.4'
15
s.source = { git: 'http://github.com/infinitered/react-native-mlkit' }
16
-
+ s.static_framework = true
17
s.dependency 'MLKitVision'
18
s.dependency 'ExpoModulesCore'
19
@@ -23,5 +23,9 @@ Pod::Spec.new do |s|
23
'SWIFT_COMPILATION_MODE' => 'wholemodule'
24
}
25
26
+ def s.build_type
27
+ Pod::BuildType.static_library
28
+ end
29
30
s.source_files = "**/*.{h,m,swift}"
31
end
0 commit comments