-
-
Notifications
You must be signed in to change notification settings - Fork 942
Expand file tree
/
Copy pathpermission_handler_apple.podspec
More file actions
22 lines (21 loc) · 1002 Bytes
/
permission_handler_apple.podspec
File metadata and controls
22 lines (21 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'permission_handler_apple'
s.version = '9.3.0'
s.summary = 'Permission plugin for Flutter.'
s.description = <<-DESC
Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check permissions.
DESC
s.homepage = 'https://github.com/baseflowit/flutter-permission-handler'
s.license = { :file => '../LICENSE' }
s.author = { 'Baseflow' => 'hello@baseflow.com' }
s.source = { :path => '.' }
s.public_header_files = 'permission_handler_apple/Sources/**/*.h'
s.source_files = 'permission_handler_apple/Sources/**/*'
s.dependency 'Flutter'
s.ios.deployment_target = '12.0'
s.static_framework = true
s.resource_bundles = {'permission_handler_apple_privacy' => ['permission_handler_apple/Sources/PrivacyInfo.xcprivacy']}
end