regulaforensics / react-native-face-api

40 stars 22 forks source link

Podspecs file is missing #6

Closed sadeemkhalaf closed 3 years ago

sadeemkhalaf commented 3 years ago

AutoLinking is not working for IOS pods I created a patch with this change and it worked

File name: RNFaceApi.podspec

File Content: `require 'json'

package = JSON.parse(File.read(File.join(dir, 'package.json')))

Pod::Spec.new do |s| s.name = "RNFaceApi" s.version = package['version'] s.summary = package['description'] s.license = package['license']

s.authors = { 'RegulaForensics' => 'support@regulaforensics.com' } s.homepage = 'https://regulaforensics.com'

s.source = { :http => 'file:' + dir }

s.ios.deployment_target = '9.0.0' s.dependency 'FaceSDK'

s.dependency 'React' end `

pkandrashkou commented 3 years ago

Hello @sadeemkhalaf Thanks for letting us know about the issue.

This should be fixed once we make a release with this PR merged.

sadeemkhalaf commented 3 years ago

@pkondrashkov thank you for this super fast fix! this is needed for react-native v64, it's working fine for previous versions, when I downgraded to v63 it worked !