Newer Older
85 lines | 2.661kb
Bogdan Timofte authored 2 weeks ago
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
<plist version="1.0">
4
<dict>
5
	<key>CFBundleDevelopmentRegion</key>
6
	<string>$(DEVELOPMENT_LANGUAGE)</string>
7
	<key>CFBundleDisplayName</key>
8
	<string></string>
9
	<key>CFBundleExecutable</key>
10
	<string>$(EXECUTABLE_NAME)</string>
11
	<key>CFBundleIdentifier</key>
12
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
	<key>CFBundleInfoDictionaryVersion</key>
14
	<string>6.0</string>
15
	<key>CFBundleName</key>
16
	<string>$(PRODUCT_NAME)</string>
17
	<key>CFBundlePackageType</key>
18
	<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
19
	<key>CFBundleShortVersionString</key>
20
	<string>1.0</string>
21
	<key>CFBundleURLTypes</key>
22
	<array>
23
		<dict>
24
			<key>CFBundleTypeRole</key>
25
			<string>Editor</string>
26
			<key>CFBundleURLName</key>
27
			<string>@ro.xdev.USB-Meter</string>
28
			<key>CFBundleURLSchemes</key>
29
			<array>
30
				<string>USB-Meter</string>
31
			</array>
32
		</dict>
33
	</array>
34
	<key>CFBundleVersion</key>
35
	<string>1</string>
36
	<key>LSApplicationCategoryType</key>
37
	<string>public.app-category.utilities</string>
38
	<key>LSRequiresIPhoneOS</key>
39
	<true/>
40
	<key>NSBluetoothAlwaysUsageDescription</key>
Bogdan Timofte authored 2 weeks ago
41
	<string>USB Meter uses Bluetooth to discover and connect to your meter devices.</string>
42
	<key>NSBluetoothPeripheralUsageDescription</key>
43
	<string>USB Meter uses Bluetooth to discover and connect to your meter devices.</string>
Bogdan Timofte authored 2 weeks ago
44
	<key>UIApplicationSceneManifest</key>
45
	<dict>
46
		<key>UIApplicationSupportsMultipleScenes</key>
47
		<false/>
48
		<key>UISceneConfigurations</key>
49
		<dict>
50
			<key>UIWindowSceneSessionRoleApplication</key>
51
			<array>
52
				<dict>
53
					<key>UISceneConfigurationName</key>
54
					<string>Default Configuration</string>
55
					<key>UISceneDelegateClassName</key>
56
					<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
57
				</dict>
58
			</array>
59
		</dict>
60
	</dict>
61
	<key>UILaunchStoryboardName</key>
62
	<string>LaunchScreen</string>
63
	<key>UIRequiredDeviceCapabilities</key>
64
	<array>
65
		<string>armv7</string>
66
	</array>
67
	<key>UIRequiresFullScreen</key>
68
	<false/>
69
	<key>UIStatusBarHidden</key>
70
	<false/>
71
	<key>UISupportedInterfaceOrientations</key>
72
	<array>
73
		<string>UIInterfaceOrientationPortrait</string>
74
		<string>UIInterfaceOrientationLandscapeLeft</string>
75
		<string>UIInterfaceOrientationLandscapeRight</string>
76
	</array>
77
	<key>UISupportedInterfaceOrientations~ipad</key>
78
	<array>
79
		<string>UIInterfaceOrientationPortrait</string>
80
		<string>UIInterfaceOrientationPortraitUpsideDown</string>
81
		<string>UIInterfaceOrientationLandscapeLeft</string>
82
		<string>UIInterfaceOrientationLandscapeRight</string>
83
	</array>
84
</dict>
85
</plist>