-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
45 lines (36 loc) · 1.21 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
install!'cocoapods',:deterministic_uuids=>false
platform :ios, '11.0'
workspace 'GrowingToolsKit.xcworkspace'
target 'Example' do
project 'Example/Example'
# SDK 3.0/4.0
pod 'GrowingAnalytics/Autotracker'
pod 'GrowingAnalytics/Ads'
pod 'GrowingAnalytics/APM'
# pod 'GrowingAPM'
# pod 'GrowingAnalytics/Hybrid'
# SDK 2.0
# pod 'GrowingAutoTrackKit'
# pod 'GrowingCoreKit'
pod 'SDCycleScrollView', '~> 1.75'
pod 'LBXScan/LBXNative', '2.3'
pod 'LBXScan/UI', '2.3'
pod 'Bugly'
# pod 'GrowingToolsKit/SDK30202', :path => './', :configurations => ['Debug']
# pod 'GrowingToolsKit/SDK2nd', :path => './', :configurations => ['Debug']
pod 'GrowingToolsKit', :path => './', :configurations => ['Debug']
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end