Blame view

Podfile 1.86 KB
75d24c15   yangbin   123
1
  # Uncomment the next line to define a global platform for your project
bc5659d6   daifengyi   feat:podfile conf...
2
3
  platform :ios, '11.0'
  use_frameworks!
75d24c15   yangbin   123
4
  
f2cf74c7   yangbin   1.0.20(4)
5
  target 'HDFwear' do
75d24c15   yangbin   123
6
7
    # Comment the next line if you don't want to use dynamic frameworks
    use_frameworks!
f2cf74c7   yangbin   1.0.20(4)
8
    
bc5659d6   daifengyi   feat:podfile conf...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    pod 'Charts', '3.6.0'
    pod 'SwiftDate','6.3.1'
    pod 'RealmSwift','10.20.0'
    pod 'SnapKit','4.2.0'
    pod 'MBProgressHUD','1.2.0'
    pod 'MJRefresh','3.7.5'
    pod 'HandyJSON','5.0.2'
    pod 'AFNetworking','4.0.1'
    pod 'IQKeyboardManagerSwift','6.5.9'
    pod 'Alamofire','4.9.1'
    pod 'TZImagePickerController','3.7.0'
    pod 'AMap3DMap','8.1.0'
    pod 'AMapLocation','2.8.0'
    pod 'AMapSearch','8.1.0'
    pod 'SCIndexView','2.2.4'
    pod 'JTAppleCalendar','7.1.7'
    pod 'YYText','1.0.7'
    pod 'swiftScan','1.2.1'
    pod 'SSZipArchive','2.4.3'
    pod 'Kingfisher','4.10.1'
    pod 'HCKalmanFilter','1.2.1'
75d24c15   yangbin   123
30
    
bc5659d6   daifengyi   feat:podfile conf...
31
32
33
34
35
36
37
38
    pod 'mob_sharesdk','4.4.3'
    pod 'mob_sharesdk/ShareSDKPlatforms/QQ_Lite','4.4.3'
    pod 'mob_sharesdk/ShareSDKPlatforms/SinaWeibo_Lite','4.4.3'
    pod 'mob_sharesdk/ShareSDKPlatforms/WeChat','4.4.3'
    pod 'mob_sharesdk/ShareSDKPlatforms/Facebook_Lite','4.4.3'
    pod 'mob_sharesdk/ShareSDKPlatforms/Instagram','4.4.3'
    pod 'mob_sharesdk/ShareSDKPlatforms/WhatsApp','4.4.3'
    pod 'mob_sharesdk/ShareSDKExtension','4.4.3'
f2cf74c7   yangbin   1.0.20(4)
39
    
75d24c15   yangbin   123
40
    # Pods for Twear
f2cf74c7   yangbin   1.0.20(4)
41
42
43
44
45
46
47
48
49
    
    #  target 'TwearTests' do
    #    inherit! :search_paths
    #    # Pods for testing
    #  end
    #
    #  target 'TwearUITests' do
    #    # Pods for testing
    #  end
bc5659d6   daifengyi   feat:podfile conf...
50
51
52
53
54
55
56
57
58
59
60
61
    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
75d24c15   yangbin   123
62
  end