[Podfile]: Use static linking for pods to bake into executable

This commit is contained in:
Magesh K
2024-12-16 21:38:01 +05:30
parent 460389f9c1
commit 7af8f5c817
2 changed files with 7 additions and 8 deletions

View File

@@ -3,11 +3,12 @@ inhibit_all_warnings!
target 'SideStore' do
platform :ios, '14.0'
use_frameworks!
use_frameworks! :linkage => :static
# Pods for AltStore
pod 'Nuke', '~> 10.0'
pod 'AppCenter', '~> 5.0'
pod 'AppCenter/Analytics', '~> 5.0'
pod 'AppCenter/Crashes', '~> 5.0'
pod 'Starscream', '~> 4.0.0'
end
@@ -15,7 +16,7 @@ end
target 'AltStoreCore' do
platform :ios, '14.0'
use_frameworks!
use_frameworks! :linkage => :static
# Pods for AltStoreCore
pod 'KeychainAccess', '~> 4.2.2'