Skip to content

Commit

Permalink
update pod spec & fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonXi committed Dec 7, 2017
1 parent 51c2df4 commit 2f36bb1
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ platform :ios, 7.0

target 'Tangram' do
pod 'LazyScroll', '~> 1.0'
pod 'VirtualView', :path => '../VirtualView/'
pod 'VirtualView', '~> 1.0'
pod 'SDWebImage', '~> 4.2'
end
5 changes: 3 additions & 2 deletions Tangram.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ Pod::Spec.new do |s|
s.summary = "Tangram is a UI Framework for building a fast and dynamic ScrollView."

s.description = <<-DESC
Tangram is a UI Framework for building a fast and dynamic ScrollView, with two platform support(Android & iOS)
Tangram is a UI Framework for building a fast and dynamic ScrollView, with two platform support (Android & iOS)
DESC

s.homepage = "https://github.com/alibaba/tangram-ios"
s.homepage = "https://github.com/alibaba/Tangram-iOS"
s.license = { :type => 'MIT' }
s.author = { "fydx" => "lbgg918@gmail.com",
"HarrisonXi" => "gpra8764@gmail.com"}
Expand All @@ -20,6 +20,7 @@ Pod::Spec.new do |s|
s.source_files = 'Tangram/Source/**/*.{h,m}'

s.dependency 'LazyScroll', '~> 1.0'
s.dependency 'VirtualView', '~> 1.0'
s.dependency 'SDWebImage', '~> 4.2'

end
2 changes: 1 addition & 1 deletion Tangram.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-Tangram/Pods-Tangram-resources.sh",
"${PODS_ROOT}/../../VirtualView/VirtualView/Resources/widgetCodeList.plist",
"${PODS_ROOT}/VirtualView/VirtualView/Resources/widgetCodeList.plist",
);
name = "[CP] Copy Pods Resources";
outputPaths = (
Expand Down
2 changes: 1 addition & 1 deletion Tangram/Source/Core/TangramView.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

#import <Foundation/Foundation.h>
#import "TMMuiLazyScrollView.h"
#import <LazyScroll/TMMuiLazyScrollView.h>

@protocol TangramItemModelProtocol;
@protocol TangramLayoutProtocol;
Expand Down
2 changes: 1 addition & 1 deletion Tangram/Source/Core/TangramView.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#import "TangramEvent.h"
#import "TangramContext.h"
#import <VirtualView/UIView+VirtualView.h>
#import "TMUtils.h"
#import <TMUtils/TMUtils.h>


@interface TangramViewDelegateHandler : NSObject<TangramViewDelegate>
Expand Down
6 changes: 3 additions & 3 deletions Tangram/Source/VirtualView/TMVVBaseElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
//
//

#import "VVViewFactory.h"
#import "VVBinaryLoader.h"
#import "VVViewContainer.h"
#import <VirtualView/VVViewFactory.h>
#import <VirtualView/VVBinaryLoader.h>
#import <VirtualView/VVViewContainer.h>
#import "TangramElementReuseIdentifierProtocol.h"
#import "TangramElementHeightProtocol.h"
#import "TangramEasyElementProtocol.h"
Expand Down
1 change: 0 additions & 1 deletion TangramDemo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ platform :ios, '7.0'

target 'TangramDemo' do
pod 'Tangram', :path => '../'
pod 'VirtualView', :path => '../../VirtualView/'
end
2 changes: 1 addition & 1 deletion TangramDemo/TangramDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
"${PODS_ROOT}/../../Tangram/Resource/TangramKitVVElementTypeMap.plist",
"${PODS_ROOT}/../../Tangram/Resource/TangramLayoutTypeMap.plist",
"${PODS_ROOT}/../../Tangram/Resource/TmallComponent2.out",
"${PODS_ROOT}/../../../VirtualView/VirtualView/Resources/widgetCodeList.plist",
"${PODS_ROOT}/VirtualView/VirtualView/Resources/widgetCodeList.plist",
);
name = "[CP] Copy Pods Resources";
outputPaths = (
Expand Down

0 comments on commit 2f36bb1

Please sign in to comment.