ScalingHeaderScrollView icon indicating copy to clipboard operation
ScalingHeaderScrollView copied to clipboard

I can't install using XCode Package or CocoPods

Open h-elbeheiry opened this issue 2 years ago • 2 comments

Says no compatible version found, there is no ver 1.0.0 in xcode package manager, and cocopods throw this error even without specifying a version: CocoaPods could not find compatible versions for pod "ScalingHeaderScrollView": In Podfile: ScalingHeaderScrollView

h-elbeheiry avatar Aug 23 '22 12:08 h-elbeheiry

You need to specify version '0.0.3' as this seems to be the newest release. Nevertheless readme should be updated

jamajk avatar Sep 14 '22 08:09 jamajk

Hey @h-elbeheiry, for SPM usually you don't need to specify a certain version, better use "up to next major", looks like this - automatically inserting the correct version Screenshot 2022-09-15 at 13 43 07 Anyway I removed hard set version for readme, sorry about that.

About Cocoapods, could you please attach your pod file? Here is mine and it works as expected:

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

def pods
  pod 'ScalingHeaderScrollView'
end
 
target 'asd' do
    pods
end

f3dm76 avatar Sep 15 '22 05:09 f3dm76