CouchbaseLiteSwift POD install fails

Hi team,

I have been trying since last two weeks to install CouchbaseLiteSift in my project using the following POD info but I am unsuccessful. However, I could add other POD frameworks and working well. In fact CouchbaseLite does, but not CouchbaseLiteSwift. Please advise how to solve.

target '<your target name>' do use_frameworks! pod 'CouchbaseLiteSwift', :git => 'https://github.com/couchbase/couchbase-lite-ios.git', :tag => '2.0DB021', :submodules => true end

Thanks in advance.

Please run pod install in verbose mode and share the error that you are seeing
pod install --verbose

and BTW, I just tested it with following pod file and works fine

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'CocoapodTest' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for CocoapodTest
use_frameworks!
  pod 'CouchbaseLiteSwift', :git => 'https://github.com/couchbase/couchbase-lite-ios.git', :tag => '2.0DB021', :submodules => true

end

Output from my install …

pod --verbose install
....
Sending stats
      - CouchbaseLiteSwift, 2.0DB021

-> Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.

Hi Priya Rajagopal,

Thanks for the details. The line doesn’t work for me forever. But, recently I haved the line as following and it took approx 45 minutes to complete and it is successful. Thanks again for your guidance.

pod 'CouchbaseLiteSwift', :git => 'https://github.com/couchbase/couchbase-lite-ios', :commit => '0acb6df71e624a94560d4e8f0b29180b208bac76', :submodules => true