forked from BuglyDevTeam/Bugly-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuglyExtension.podspec
More file actions
21 lines (21 loc) · 847 Bytes
/
BuglyExtension.podspec
File metadata and controls
21 lines (21 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "BuglyExtension"
s.version = "1.1"
s.summary = "Bugly iOS Extension SDK"
s.description = "iOS Extension library for Bugly Crash Report Service"
s.homepage = "http://bugly.qq.com/"
s.license = { :type => "Copyright", :text => "©2015 Tencent.com"}
s.author = { "Tencent" => "bugly@tencent.com" }
s.source = { :http => "https://raw.githubusercontent.com/BuglyDevTeam/Bugly-iOS/master/release/BuglyExtension-1.1.zip" }
s.requires_arc = false
s.platform = :ios
s.ios.deployment_target = '8.0'
s.vendored_frameworks ='BuglyExtension.framework'
s.source_files = 'BuglyExtension.framework/Headers/*.h'
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2015 tencent.com. All rights reserved.
LICENSE
}
end