-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDriveKitVehicleUI.podspec
26 lines (20 loc) · 1.12 KB
/
DriveKitVehicleUI.podspec
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
Pod::Spec.new do |s|
s.name = 'DriveKitVehicleUI'
s.version = '1.6-beta1'
s.summary = 'DriveKit Vehicle UI Framework'
s.description = 'DriveKit Vehicle features : Vehicles list and detail, beacon and bluetooth management, vehicle selection features'
s.homepage = 'https://docs.drivequant.com'
s.license = 'Apache License, Version 2.0'
s.author = { 'DriveQuantPublic' => 'jeremy.bayle@drivequant.com' }
s.swift_version = '5.0'
s.source = { :git => 'https://github.com/DriveQuantPublic/drivekit-ui-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.source_files = ['DriveKitVehicleUI/**/*.swift', 'DriveKitVehicleUI/**/*.m']
s.resource = ['DriveKitVehicleUI/DriveKitVehicle.xcassets', 'DriveKitVehicleUI/Localizable/*', 'DriveKitVehicleUI/**/*.xib', 'DriveKitVehicleUI/PrivacyInfo.xcprivacy']
s.dependency 'DriveKitCommonUI', s.version.to_s
s.dependency 'DriveKitVehicle'
s.dependency 'DriveKitTripAnalysis'
s.pod_target_xcconfig = {
'PRODUCT_BUNDLE_IDENTIFIER': 'com.drivequant.drivekit-vehicle-ui'
}
end