-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfpjs_pro_plugin.podspec
29 lines (26 loc) · 1.08 KB
/
fpjs_pro_plugin.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint fpjs_pro_plugin.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'fpjs_pro_plugin'
s.version = '3.1.0'
s.summary = 'Flutter plugin for FingerprintJS Pro.'
s.description = <<-DESC
Flutter plugin for FingerprintJS Pro.
DESC
s.homepage = 'https://github.com/fingerprintjs/fingerprintjs-pro-flutter'
s.license = { :file => '../LICENSE' }
s.author = { 'FingerprintJS, Inc (https://fingerprint.com)' => 'boris.lobanov@fingerprintjs.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'FingerprintPro', '~> 2.6.0'
s.platform = :ios, '13.0'
s.xcconfig = {
"LIBRARY_SEARCH_PATHS" => '"${PROJECT_DIR}/.."/*',
}
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
end