forked from tetujin/AWAREFramework-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAWAREFramework.podspec
More file actions
56 lines (44 loc) · 2.72 KB
/
AWAREFramework.podspec
File metadata and controls
56 lines (44 loc) · 2.72 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
55
56
#
# Be sure to run `pod lib lint AWAREFramework.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'AWAREFramework'
s.version = '1.1.5'
s.summary = 'AWARE: An Open-source Context Instrumentation Framework'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
AWARE is an Android and iOS framework dedicated to instrument, infer, log and share mobile context information, for application developers, researchers and smartphone users. AWARE captures hardware-, software-, and human-based data. They transform data into information you can understand.
DESC
s.homepage = 'https://github.com/tetujin/AWAREFramework-iOS'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'Apache2', :file => 'LICENSE' }
s.author = { 'tetujin' => 'tetujin@ht.sfc.keio.ac.jp' }
s.source = { :git => 'https://github.com/tetujin/AWAREFramework-iOS.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '10'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.2' }
s.source_files = ['AWAREFramework/Classes/**/*']
s.resource_bundles = {
'AWAREFramework' => ['AWAREFramework/Assets/**/*.png','AWAREFramework/Assets/*.xib','AWAREFramework/Assets/**/*.jpg', 'AWAREFramework/Assets/**/*.xcdatamodeld', 'AWAREFramework/Assets/**/*.xcassets']
}
s.resources = 'AWAREFramework/Assets/**/*.xcdatamodeld'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'MapKit', 'CoreData', 'CoreTelephony', 'CoreLocation', 'CoreMotion', 'CoreBluetooth', 'EventKit', 'EventKitUI', 'UserNotifications', 'EventKit', 'EventKitUI','Accelerate', 'AudioToolbox','AVFoundation','GLKit'
s.static_framework = true
s.dependency 'SCNetworkReachability'
s.dependency 'GoogleSignIn'
s.dependency 'ios-ntp'
# s.dependency 'EZAudio', '1.1.2' # EZAudio 1.1.5 has an error regarding bridge header ( https://github.com/syedhali/EZAudio/issues/267 )
s.dependency 'SVProgressHUD'
s.dependency 'EAIntroView', '~> 2.9.0'
s.dependency 'TPCircularBuffer'
s.ios.vendored_frameworks = 'AWAREFramework/Frameworks/StudentLifeAudio.framework'
end