-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.yml
35 lines (33 loc) · 1.5 KB
/
project.yml
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
name: SwiftOBD2App
options:
bundleIdPrefix: com.myapp
targets:
SwiftOBD2App:
type: application
platform: iOS
deploymentTarget: "16.0"
dependencies:
- package: SwiftOBD2
product: SwiftOBD2
info:
path: "SwiftOBD2App/Info.plist"
properties:
CFBundleDisplayName: $(PRODUCT_NAME)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
CFBundleIdentifier: $(PRODUCT_BUNDLE_IDENTIFIER)
CFBundlePackageType: $(PRODUCT_BUNDLE_PACKAGE_TYPE)
UILaunchStoryboardName: "LaunchScreen"
NSBluetoothAlwaysUsageDescription: "This app uses Bluetooth to connect to nearby devices."
NSBluetoothPeripheralUsageDescription: "This app uses Bluetooth to connect to nearby devices."
NSLocationAlwaysUsageDescription: "This app uses location services to connect to nearby devices."
NSLocationWhenInUseUsageDescription: "This app uses location services to connect to nearby devices."
UIBackgroundModes: ["bluetooth-central"]
UISupportedInterfaceOrientations: [UIInterfaceOrientationPortrait, UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight]
UISupportedInterfaceOrientations~ipad: [UIInterfaceOrientationPortrait, UIInterfaceOrientationPortraitUpsideDown, UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight]
sources:
- path: "SwiftOBD2App"
packages:
SwiftOBD2:
url: https://github.com/kkonteh97/SwiftOBD2.git
requirement:
branch: "main"