Class X is implemented in both and one of the two will be used, which one is undefined

后端 未结 5 1912
独厮守ぢ
独厮守ぢ 2020-12-13 09:10

I\'m getting this warning:

Class X is implemented in both  and  one of the two will be used, which one is undefined


        
相关标签:
5条回答
  • 2020-12-13 09:18

    If you want a quick solution - just add your MyFramework project as a subproject to MyApplication project. You can still use cocoa pods both for your framework and test application (but include your "common" lib with pods only to framework project)

    0 讨论(0)
  • 2020-12-13 09:23

    For closed-source static libraries we recommend cocoapods-packager. I'm not sure it's support for frameworks though.

    0 讨论(0)
  • 2020-12-13 09:27

    One solution is to turn on use_frameworks! in the framework's Podfile. Then you still could make your framework compiled, and embed your framework in the target app. The warning messages will disappear (It is simply because framework's pods are complied to another framework, but you don't embed this one in your target app. Then your app will refer to the binary of its own.)

    But this is not a good solution for two reasons: 1. You need to make sure the target app include the necessary pods that the framework needs. 2. The app might use different pod version to the framework. If both framework and app refer to the same pod binary, it could lead to crash.

    I doubt there is a good solution for this issue.

    0 讨论(0)
  • 2020-12-13 09:38

    You can create a Podspec for your MyFramework with CoolPod as a dependency.


    Your MyFramework.podspec will look something like:

    Pod::Spec.new do |spec|
      spec.name          = 'TestFW'
      spec.version       = '1.0.0'
      spec.license       = { :type => 'BSD' }
      spec.homepage      = 'https://github.com/user/TestFW'
      spec.authors       = { 'Auther Name' => 'author@gmail.com' }
      spec.summary       = 'Testing FW Pod with Test App'
      spec.source        = { :git => 'https://github.com/user/TestFW.git' }
      spec.module_name   = 'TestFW'
      spec.ios.source_files   = 'TestFW/*.swift'
    
      spec.dependency 'CoolPod'
    end
    

    And your MyApplication's podfile will look something like this:

    target 'TestApp' do
      use_frameworks!
    
      pod 'CoolPod'
      pod 'TestFW'
    end
    
    0 讨论(0)
  • 2020-12-13 09:42

    My solution was to take the source code from the cocoa pod and create a Cocoa Touch Framework for it. Then I linked the framework to my api and to my test app. This isn't great but it is all I could do quickly. I believe Cocoapods is working on supporting frameworks so this solution may get outdated soon enough.

    My company also uses gradle for dependencies (java) and build scripting. So I created a groovy/gradle build task that builds my framework and my supporting frameworks (cocoapod frameworks) and creates a universal framework from them. Then it zips all of the frameworks. This means I can distribute one zip with all of the requirements. This obviously isn't the nicest way to distribute (we'll be moving to distributing through Cocoapods with dependencies on our closed source frameworks), but it is fast to setup.

    0 讨论(0)
提交回复
热议问题