Skip to content

Commit da3f588

Browse files
committed
fix: include proper export and bluetooth plist keys
1 parent 2687b1d commit da3f588

2 files changed

Lines changed: 44 additions & 2 deletions

File tree

AllSpark-ios.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@
276276
GENERATE_INFOPLIST_FILE = YES;
277277
INFOPLIST_KEY_LSApplicationCategoryType = "";
278278
INFOPLIST_KEY_LSSupportsOpeningDocumentsInPlace = NO;
279+
INFOPLIST_KEY_NSBluetoothAlwaysUsageDescription = "This app requires Bluetooth access to discover and connect to nearby sensors and devices as determined by server policy.";
279280
INFOPLIST_KEY_NSBonjourServices = _allspark._tcp;
280281
INFOPLIST_KEY_NSCameraUsageDescription = "The app collects video for VLM anomaly detection.";
281282
INFOPLIST_KEY_NSLocalNetworkUsageDescription = "This app uses the local network to connect to the AllSpark server for video streaming and control.";
@@ -287,7 +288,7 @@
287288
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
288289
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
289290
IPHONEOS_DEPLOYMENT_TARGET = 18.6;
290-
ITSAppUsesNonExemptEncryption = NO;
291+
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption = NO;
291292
LD_RUNPATH_SEARCH_PATHS = (
292293
"$(inherited)",
293294
"@executable_path/Frameworks",
@@ -318,6 +319,7 @@
318319
GENERATE_INFOPLIST_FILE = YES;
319320
INFOPLIST_KEY_LSApplicationCategoryType = "";
320321
INFOPLIST_KEY_LSSupportsOpeningDocumentsInPlace = NO;
322+
INFOPLIST_KEY_NSBluetoothAlwaysUsageDescription = "This app requires Bluetooth access to discover and connect to nearby sensors and devices as determined by server policy.";
321323
INFOPLIST_KEY_NSBonjourServices = _allspark._tcp;
322324
INFOPLIST_KEY_NSCameraUsageDescription = "The app collects video for VLM anomaly detection.";
323325
INFOPLIST_KEY_NSLocalNetworkUsageDescription = "This app uses the local network to connect to the AllSpark server for video streaming and control.";
@@ -329,7 +331,7 @@
329331
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
330332
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
331333
IPHONEOS_DEPLOYMENT_TARGET = 18.6;
332-
ITSAppUsesNonExemptEncryption = NO;
334+
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption = NO;
333335
LD_RUNPATH_SEARCH_PATHS = (
334336
"$(inherited)",
335337
"@executable_path/Frameworks",

fastlane/README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
fastlane documentation
2+
----
3+
4+
# Installation
5+
6+
Make sure you have the latest version of the Xcode command line tools installed:
7+
8+
```sh
9+
xcode-select --install
10+
```
11+
12+
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
13+
14+
# Available Actions
15+
16+
## iOS
17+
18+
### ios beta
19+
20+
```sh
21+
[bundle exec] fastlane ios beta
22+
```
23+
24+
Build and upload to TestFlight
25+
26+
### ios build
27+
28+
```sh
29+
[bundle exec] fastlane ios build
30+
```
31+
32+
Build only (no upload) — for local validation
33+
34+
----
35+
36+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
37+
38+
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
39+
40+
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 commit comments

Comments
 (0)