-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAppMonitor.podspec
More file actions
54 lines (29 loc) · 1.26 KB
/
AppMonitor.podspec
File metadata and controls
54 lines (29 loc) · 1.26 KB
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
50
51
52
53
54
#
# Be sure to run `pod spec lint AppMonitor.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "AppMonitor"
s.version = "1.8"
s.summary = "AppMonitor monitors your app usage"
s.description = <<-DESC
AppMonitor is a framework which can be used for monitoring your app usage including number of time user open the application and the time spend by user in your application
DESC
s.homepage = "https://www.raywenderlich.com"
s.license = {
:type => 'Commercial',
:text => <<-LICENSE
Copyright © 2016 Robosoft Technologies Pvt Ltd
LICENSE
}
s.author = { "RAHUL CK" => "" }
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
# s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3' }
s.source = { :git => "https://github.com/rahulvatakara/AppMonitor.git", :branch => "master", :tag => "#{s.version}" }
s.ios.vendored_frameworks = 'AppMonitor.framework'
s.exclude_files = '.git', 'Source','README.md'
end