Skip to content

hc2088/testpodfile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

testpodfile

测试cocoapods cocoapods 3种类形依赖

1,静态库 .a , .framework pod库 2,动态库 .framework pod库 3,源代码pod库

app

Podfile

target 'testapp' do
  # Comment the next line if you don't want to use dynamic frameworks
#  use_frameworks!

  # Pods for testapp

  pod 'sourcecode',:path=>'../sourcecode'
  pod 'dynamicframework',:path=>'../dynamicframework'
  pod 'astaticlib',:path=>'../astaticlib'
  
  target 'testappTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'testappUITests' do
    # Pods for testing
  end

end

不用use_frameworks!

不用useframeworks.png

用了use_frameworks!

useframeworks.png

测试demo

About

测试cocoapods

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published