forked from QuisApp/flutter_contacts
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflutter_contacts.podspec
More file actions
22 lines (21 loc) · 1.09 KB
/
flutter_contacts.podspec
File metadata and controls
22 lines (21 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'flutter_contacts'
s.version = '0.0.1'
s.summary = 'Fast, complete contact management for Android, iOS & macOS.'
s.description = <<-DESC
Fast, complete contact management for Android, iOS & macOS — all fields, groups, accounts, vCards, native dialogs, listeners, SIM contacts, and number blocking.
DESC
s.homepage = 'http://example.com'
s.license = { :type => 'MIT', :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.source = { :git => 'https://github.com/QuisApp/flutter_contacts.git', :tag => s.version.to_s }
s.source_files = 'flutter_contacts/Sources/flutter_contacts/**/*.swift'
s.resource_bundles = {'flutter_contacts_privacy' => ['flutter_contacts/Sources/flutter_contacts/PrivacyInfo.xcprivacy']}
s.dependency 'FlutterMacOS'
s.platform = :osx, '10.15'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/**/*'
end
end