CocoaPods: Difference between revisions
Jump to navigation
Jump to search
Line 81: | Line 81: | ||
==Private Pod Patching== | ==Private Pod Patching== | ||
<source lang="bash"> | <source lang="bash"> | ||
tag='v1.0.0';git tag -d $tag;git push --delete origin $tag;\ | |||
git push --delete origin | git tag $tag;git push origin $tag | ||
url=bit.chorke.org:chorkeorg/academia-core-ioslib.git;pod='AcademiaCoreLIB';\ | |||
pod repo remove $pod;pod repo add $pod $url;pod update $pod | |||
pod update | |||
</source> | </source> | ||
Revision as of 08:04, 25 December 2019
Install
pod --version
pod repo update
cd /opt/dev/cki_workspaces/
cd ./init_workspace/chorke-init-iosapp/
pod init
vim Podfile
open -a xcode Podfile
pod install
1. Target > building settings > ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES, Value type is Boolean, click on the other, change the value to $(inherited) 2. pod update | pod install 3. Done
Fixing
pod deintegrate
sudo gem install cocoapods-clean
cd /opt/dev/cki_workspaces/
cd ./init_workspace/chorke-init-iosapp/
pod clean
pod setup
pod install
Podspec
pod lib create AcademiaCoreGUI
cd AcademiaCoreGUI/
pod lib lint AcademiaCoreGUI.podspec
pod repo push academia-apps-iosgui AcademiaCoreGUI.podspec
ls -la ~/.cocoapods/repos/academia-apps-iosgui/AcademiaCoreGUI.podspec/
pod repo add AcademiaCoreGUI https://github.com/chorkeorg/academia-apps-iosgui.git
pod spec create AcademiaCoreGUI
open -a Xcode AcademiaCoreGUI.podspec
pod spec lint AcademiaCoreGUI.podspec
pod lib lint
:'
git tag -d v1.0.0
git push --delete origin v1.0.0
'
git tag v1.0.0
git push origin v1.0.0
pod trunk register [email protected] 'Chorke Academia' --description='Chorke Academia, Inc.'
pod trunk push
pod install
# pod repo update
pod update AcademiaCoreGUI
pod install --repo-update
Private Podspec
pod repo add AcademiaCoreLIB bit.chorke.org:chorkeorg/academia-core-ioslib.git
cd ~/.cocoapods/repos/AcademiaCoreLIB/; pod repo lint .
pod repo push AcademiaCoreLIB AcademiaCoreLIB.podspec
pod repo remove AcademiaCoreLIB
# add to podfile as pod dependency
pod 'AcademiaCoreLIB', :git => 'bit.chorke.org:chorkeorg/academia-core-ioslib.git'
Private Pod Patching
tag='v1.0.0';git tag -d $tag;git push --delete origin $tag;\
git tag $tag;git push origin $tag
url=bit.chorke.org:chorkeorg/academia-core-ioslib.git;pod='AcademiaCoreLIB';\
pod repo remove $pod;pod repo add $pod $url;pod update $pod