-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimJpush.podspec
More file actions
30 lines (27 loc) · 1.46 KB
/
TimJpush.podspec
File metadata and controls
30 lines (27 loc) · 1.46 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
Pod::Spec.new do |s|
s.name = "TimJpush"
s.version = "1.0.0"
s.summary = "简化推送的代码逻辑,这个使用的 jpush 作为拓展,只需要设置3方 sdk 的 key 和 一个 收到推送的 block 即可"
s.homepage = "https://github.com/timRabbit/TimJpush"
s.social_media_url = "https://github.com/timRabbit/TimJpush"
s.platform = :ios,'6.0'
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { " tim" => "491590253@qq.com" }
s.source = { :git => "https://github.com/timRabbit/TimJpush.git",:tag => s.version.to_s }
s.ios.deployment_target = "6.0"
s.requires_arc = true
s.framework = "CoreFoundation","Foundation","CoreGraphics","Security","UIKit"
s.library = "z.1.1.3","stdc++","sqlite3"
s.source_files = 'TimJpush'
#s.resources = 'SIDADView/*.{bundle}'
s.dependency 'XAspect'
s.ios.frameworks = 'UserNotifications'
# s.subspec 'YMCitySelect' do |sp|
# sp.source_files = 'YMCitySelect/*.{h,m,mm}'
# sp.resources = "Extend/**/*.{png}"
# sp.requires_arc = true
# sp.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz, $(SDKROOT)/usr/include/libxml2', 'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++0x', 'CLANG_CXX_LIBRARY' => 'libstdc++', 'CLANG_WARN_DIRECT_OBJC_ISA_USAGE' => 'YES'}
# sp.dependency 'FontIcon'
# sp.prefix_header_contents = '#import "EasyIOS.h"'
# end
end