Currently when we opt to use IGListKit supported version of Texture we have to specify in Podfile like so: -
pod 'Texture/IGListKit' doing so will just install Texture/Coreand IGListKit without PINRemoteImage unless we manually install it if we want to take advantage of image caching and other cool stuffs from PINRemoteImage.
However the behavior is different when installing Texture without IGListKit,If I specify pod 'Texture' and run pod install it automatically download PINRemoteImage without listing it manually in Podfile.
This PR makes 'Texture/IGListKit' behave the same way by automatically install PINRemoteImage without listing in manually in Podfile.
I have simply added PINRemoteImage as one of the dependencies of IGListKit in /Texture.podspec
ie: (igl.dependency 'Texture/PINRemoteImage')
Currently when we opt to use IGListKit supported version of Texture we have to specify in Podfile like so: -
pod 'Texture/IGListKit'
doing so will just installTexture/Core
andIGListKit
withoutPINRemoteImage
unless we manually install it if we want to take advantage of image caching and other cool stuffs fromPINRemoteImage
.However the behavior is different when installing Texture without IGListKit,If I specify
pod 'Texture'
and run pod install it automatically downloadPINRemoteImage
without listing it manually inPodfile
.This PR makes
'Texture/IGListKit'
behave the same way by automatically install PINRemoteImage without listing in manually in Podfile.I have simply added PINRemoteImage as one of the dependencies of IGListKit in /Texture.podspec ie: (
igl.dependency 'Texture/PINRemoteImage'
)