Skip to content

Commit

Permalink
update podspec and podfile dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
acton393 committed Jun 27, 2018
1 parent dde5d43 commit 6a0a2af
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
18 changes: 10 additions & 8 deletions WXLottie.podspec
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
# coding: utf-8

Pod::Spec.new do |s|
s.name = "WeexXLottie"
s.version = "0.0.1"
s.summary = "Weex Plugin"
s.name = "WXLottie"
s.version = "1.0"
s.summary = "Weex plugin for lottie"

s.description = <<-DESC
Weexplugin Source Description
Weex plugin for lottie
DESC

s.homepage = "https://github.com"
s.homepage = "https://github.com/acton393/WeexLottie"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
copyright
LICENSE
}
s.authors = {
"yourname" =>"youreamail"
"acton393" =>"[email protected]"
}
s.platform = :ios
s.ios.deployment_target = "7.0"
s.ios.deployment_target = "8.0"

s.source = { :git => 'please input the url of your code in github', :tag => 'please input you github tag' }
s.user_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => "'$(PODS_ROOT)/WeexPluginLoader'" }

s.source = { :path=>'./'}
s.source_files = "ios/Sources/*.{h,m,mm}"

s.requires_arc = true
Expand Down
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ platform :ios, '8.0'
#inhibit_all_warnings!

def common
pod 'WeexSDK', :git=>'https://github.com/apache/incubator-weex',:branch=>'0.16-dev'
pod 'WeexSDK'
pod 'WeexPluginLoader'
pod 'lottie-ios', :git=>'https://github.com/airbnb/lottie-ios.git', :tag=>'1.5.1'
end
Expand Down
4 changes: 2 additions & 2 deletions playground/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ def common
pod 'SocketRocket', '0.4.2'
pod 'ATSDK-Weex', '0.0.1'
pod 'WXLottie', :path=>'../../'
pod 'WeexSDK', :git=>'https://github.com/apache/incubator-weex',:branch=>'0.16-dev'
pod 'WeexSDK'
pod 'WeexPluginLoader'
pod 'lottie-ios', :git=>'https://github.com/airbnb/lottie-ios.git', :tag=>'1.5.1'
pod 'lottie-ios'
end

target 'WeexDemo' do
Expand Down

0 comments on commit 6a0a2af

Please sign in to comment.