Skip to content

Commit c488505

Browse files
authored
Merge pull request devMEremenko#425 from devMEremenko/xcode-15-support
Xcode 15 support
2 parents 3aaaa6a + ba4d2f6 commit c488505

12,395 files changed

Lines changed: 1944898 additions & 581735 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

6 KB
Binary file not shown.

Podfile

Lines changed: 39 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,49 +8,58 @@ target 'XcodeBenchmark' do
88
inhibit_all_warnings!
99

1010
# Firebase
11-
pod 'Firebase/Database'
12-
pod 'Firebase/RemoteConfig'
13-
pod 'Firebase/Crashlytics'
14-
pod 'Firebase/Analytics'
15-
pod 'Firebase/Messaging'
16-
pod 'FirebaseFirestoreSwift'
17-
pod 'Firebase/Storage'
18-
pod 'Firebase/Performance'
19-
11+
pod 'FirebaseCore', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
12+
pod 'FirebaseFirestore', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
13+
pod 'FirebaseAuth'
14+
pod 'FirebaseAnalytics'
15+
pod 'FirebaseRemoteConfig'
16+
pod 'FirebaseStorage'
17+
pod 'FirebaseMessaging'
18+
19+
# pod 'Firebase'
20+
# pod 'Firebase/Database'
21+
# pod 'Firebase/RemoteConfig'
22+
# pod 'Firebase/Analytics'
23+
# pod 'Firebase/Messaging'
24+
# pod 'FirebaseFirestoreSwift'
25+
# pod 'Firebase/Storage'
26+
27+
pod 'lottie-ios'
28+
2029
# Networking
21-
pod 'AFNetworking', '~> 4.0'
22-
pod 'SDWebImage', '~> 5.0'
23-
pod 'Moya', '~> 14.0'
24-
pod 'Starscream', '~> 4.0.0'
30+
pod 'AFNetworking'
31+
pod 'SDWebImage'
32+
pod 'Moya'
33+
pod 'Starscream'
2534

2635
# Core
27-
pod 'SwiftyJSON', '~> 4.0'
28-
pod 'Realm', '~> 5.3.4'
36+
pod 'SwiftyJSON'
37+
pod 'Realm'
2938
pod 'MagicalRecord', :git => 'https://github.com/magicalpanda/MagicalRecord'
30-
pod 'RxBluetoothKit', :git => 'https://github.com/i-mobility/RxBluetoothKit.git', :tag => '7.0.2'
31-
pod 'ReactiveCocoa', '~> 10.1'
32-
pod 'CryptoSwift', '~> 1.4.0'
39+
pod 'RxBluetoothKit', :git => 'https://github.com/i-mobility/RxBluetoothKit.git', :tag => '7.0.4'
40+
pod 'ReactiveCocoa'
41+
pod 'CryptoSwift'
3342
pod 'R.swift.Library'
3443
pod 'ObjectMapper'
3544

36-
pod 'TRON', '~> 5.0.0'
37-
pod 'DTCollectionViewManager', '~> 8.0.0'
38-
pod 'DTTableViewManager', '~> 8.0.0'
45+
pod 'TRON'
46+
pod 'DTCollectionViewManager'
47+
pod 'DTTableViewManager'
3948
pod 'Ariadne'
4049
pod 'LoadableViews'
4150

42-
pod 'SwiftDate', '~> 5.0'
51+
pod 'SwiftDate'
4352
pod 'SwiftyBeaver'
4453

4554
# UI
4655
pod 'Hero'
4756
pod 'SVProgressHUD'
48-
pod 'Eureka', '~> 5.3.2'
57+
pod 'Eureka'
4958
pod 'IQKeyboardManagerSwift'
50-
pod 'Macaw', '0.9.7'
59+
pod 'Macaw'
5160

5261
# Layout
53-
pod 'SnapKit', '~> 5.0.0'
62+
pod 'SnapKit'
5463
pod 'Masonry'
5564

5665
# Google
@@ -71,6 +80,11 @@ post_install do |pi|
7180
t.build_configurations.each do |config|
7281
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = minimum_target
7382
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
83+
84+
xcconfig_path = config.base_configuration_reference.real_path
85+
xcconfig = File.read(xcconfig_path)
86+
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
87+
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
7488
end
7589
end
7690
end

0 commit comments

Comments
 (0)