-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
28 lines (24 loc) · 970 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
platform :ios, '15.0'
target 'Scandocs' do
use_frameworks!
pod 'SDCameraScan', :path => 'Modules/SDCameraScan'
pod 'SDCloudKitModel', :path => 'Modules/SDCloudKitModel'
pod 'SDCoreKit', :path => 'Modules/SDCoreKit'
pod 'SDDatabaseWorker', :path => 'Modules/SDDatabaseWorker'
pod 'SDDocsOrganizer', :path => 'Modules/SDDocsOrganizer'
pod 'SDDocumentEditor', :path => 'Modules/SDDocumentEditor'
pod 'SDPhotosGallery', :path => 'Modules/SDPhotosGallery'
pod 'SDScanKit', :path => 'Modules/SDScanKit'
pod 'FirebaseAnalytics'
pod 'FirebaseCrashlytics'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end