forked from douglasddf/iOS-Check-Permission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iOS-Check-Permission.podspec
49 lines (39 loc) · 1.65 KB
/
iOS-Check-Permission.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Be sure to run `pod lib lint iOS-Check-Permission.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
Pod::Spec.new do |s|
s.name = "iOS-Check-Permission"
s.version = "0.1.2"
s.summary = "Permits the user request for permission access the iOS (Calendar , Reminder, Gallery and Location)"
s.description = <<-DESC
**iOS Check Permissions**
Offer a set of methods to solicit the use of operating system resources (iOS),
through the permissions to authorize the use of resources such as:
- Camera
- Gallery
- Reminder
- Location
<img src="http://i.giflike.com/FKLOTzK.gif">
See more on Youtube video:
- https://www.youtube.com/watch?v=JxdlaEp6dC0
DESC
s.homepage = "https://github.com/douglasddf/iOS-Check-Permission"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Douglas Frari" => "[email protected]" }
s.source = { :git => "https://github.com/douglasddf/iOS-Check-Permission.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/douglasddf'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'iOSCheckPermission' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'CoreLocation', 'AVFoundation','AssetsLibrary','EventKit','Foundation'
# s.dependency 'AFNetworking', '~> 2.3'
end