-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGRKAnalytics.podspec.json
More file actions
49 lines (49 loc) · 1.21 KB
/
GRKAnalytics.podspec.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "GRKAnalytics",
"version": "2.0.1",
"summary": "A lightweight abstraction for underlying analytics providers.",
"homepage": "https://github.com/levigroker/GRKAnalytics",
"license": "Creative Commons Attribution 3.0 Unported License",
"authors": {
"Levi Brown": "levigroker@gmail.com"
},
"social_media_url": "https://twitter.com/levigroker",
"source": {
"git": "https://github.com/fuzzball1980/GRKAnalytics.git",
"tag": "2.0.1"
},
"platforms": {
"ios": "7.0",
"osx": "10.9"
},
"frameworks": "Foundation",
"description": "GRKAnalytics is a lightweight abstraction allowing for the agnostic use of multiple and varying analytics providers. Supported providers: Fabric and GoogleAnalytics.",
"subspecs": [
{
"name": "Core",
"source_files": [
"*.{h,m}"
]
},
{
"name": "Fabric",
"dependencies": {
"GRKAnalytics/Core": [
]
},
"source_files": [
"Providers/GRKFabricProvider.{h,m}"
]
},
{
"name": "GoogleAnalytics",
"dependencies": {
"GRKAnalytics/Core": [
]
},
"source_files": [
"Providers/GRKGoogleAnalyticsProvider.{h,m}"
]
}
]
}