Installation Guide
This page contains the installation guide needed for Face Detector in Android and iOS
Last updated
use_frameworks!
pod 'FaceDetector', '0.0.3'
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "CryptoSwift"
puts "Enable module stability for CryptoSwift"
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
endreact-native install [email protected]android {
```
aaptOptions {
noCompress "tflite"
}
}platform :ios, '11.0'
use_frameworks!
```
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "CryptoSwift"
puts "Enable module stability for CryptoSwift"
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
end
const license = Platform.select({
android: "",
ios: ""
})