agent-device 0.7.3 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -204,6 +204,8 @@
204
204
  isa = XCBuildConfiguration;
205
205
  buildSettings = {
206
206
  ALWAYS_SEARCH_USER_PATHS = NO;
207
+ AGENT_DEVICE_IOS_RUNNER_APP_BUNDLE_ID = com.callstack.agentdevice.runner;
208
+ AGENT_DEVICE_IOS_RUNNER_TEST_BUNDLE_ID = "$(AGENT_DEVICE_IOS_RUNNER_APP_BUNDLE_ID).uitests";
207
209
  ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
208
210
  CLANG_ANALYZER_NONNULL = YES;
209
211
  CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
@@ -268,6 +270,8 @@
268
270
  isa = XCBuildConfiguration;
269
271
  buildSettings = {
270
272
  ALWAYS_SEARCH_USER_PATHS = NO;
273
+ AGENT_DEVICE_IOS_RUNNER_APP_BUNDLE_ID = com.callstack.agentdevice.runner;
274
+ AGENT_DEVICE_IOS_RUNNER_TEST_BUNDLE_ID = "$(AGENT_DEVICE_IOS_RUNNER_APP_BUNDLE_ID).uitests";
271
275
  ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
272
276
  CLANG_ANALYZER_NONNULL = YES;
273
277
  CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
@@ -342,7 +346,7 @@
342
346
  "@executable_path/Frameworks",
343
347
  );
344
348
  MARKETING_VERSION = 1.0;
345
- PRODUCT_BUNDLE_IDENTIFIER = com.myapp.AgentDeviceRunner;
349
+ PRODUCT_BUNDLE_IDENTIFIER = "$(AGENT_DEVICE_IOS_RUNNER_APP_BUNDLE_ID)";
346
350
  PRODUCT_NAME = "$(TARGET_NAME)";
347
351
  STRING_CATALOG_GENERATE_SYMBOLS = YES;
348
352
  SWIFT_APPROACHABLE_CONCURRENCY = YES;
@@ -377,7 +381,7 @@
377
381
  "@executable_path/Frameworks",
378
382
  );
379
383
  MARKETING_VERSION = 1.0;
380
- PRODUCT_BUNDLE_IDENTIFIER = com.myapp.AgentDeviceRunner;
384
+ PRODUCT_BUNDLE_IDENTIFIER = "$(AGENT_DEVICE_IOS_RUNNER_APP_BUNDLE_ID)";
381
385
  PRODUCT_NAME = "$(TARGET_NAME)";
382
386
  STRING_CATALOG_GENERATE_SYMBOLS = YES;
383
387
  SWIFT_APPROACHABLE_CONCURRENCY = YES;
@@ -400,7 +404,7 @@
400
404
  GENERATE_INFOPLIST_FILE = YES;
401
405
  IPHONEOS_DEPLOYMENT_TARGET = 15.6;
402
406
  MARKETING_VERSION = 1.0;
403
- PRODUCT_BUNDLE_IDENTIFIER = com.myapp.AgentDeviceRunnerUITests;
407
+ PRODUCT_BUNDLE_IDENTIFIER = "$(AGENT_DEVICE_IOS_RUNNER_TEST_BUNDLE_ID)";
404
408
  PRODUCT_NAME = "$(TARGET_NAME)";
405
409
  STRING_CATALOG_GENERATE_SYMBOLS = NO;
406
410
  SWIFT_APPROACHABLE_CONCURRENCY = YES;
@@ -424,7 +428,7 @@
424
428
  GENERATE_INFOPLIST_FILE = YES;
425
429
  IPHONEOS_DEPLOYMENT_TARGET = 15.6;
426
430
  MARKETING_VERSION = 1.0;
427
- PRODUCT_BUNDLE_IDENTIFIER = com.myapp.AgentDeviceRunnerUITests;
431
+ PRODUCT_BUNDLE_IDENTIFIER = "$(AGENT_DEVICE_IOS_RUNNER_TEST_BUNDLE_ID)";
428
432
  PRODUCT_NAME = "$(TARGET_NAME)";
429
433
  STRING_CATALOG_GENERATE_SYMBOLS = NO;
430
434
  SWIFT_APPROACHABLE_CONCURRENCY = YES;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-device",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "Unified control plane for physical and virtual devices via an agent-driven CLI.",
5
5
  "license": "MIT",
6
6
  "author": "Callstack",
@@ -12,6 +12,10 @@ Use Automatic Signing in Xcode, or provide optional overrides:
12
12
  - `AGENT_DEVICE_IOS_TEAM_ID`
13
13
  - `AGENT_DEVICE_IOS_SIGNING_IDENTITY`
14
14
  - `AGENT_DEVICE_IOS_PROVISIONING_PROFILE`
15
+ - `AGENT_DEVICE_IOS_BUNDLE_ID` (optional runner bundle-id base override)
16
+
17
+ Free Apple Developer (Personal Team) accounts may reject generic bundle IDs as unavailable.
18
+ Set `AGENT_DEVICE_IOS_BUNDLE_ID` to a unique reverse-DNS identifier when that happens.
15
19
 
16
20
  Security guidance for these overrides:
17
21
 
@@ -23,7 +27,7 @@ Security guidance for these overrides:
23
27
 
24
28
  If setup/build takes long, increase:
25
29
 
26
- - `AGENT_DEVICE_DAEMON_TIMEOUT_MS` (default `45000`, for example `120000`)
30
+ - `AGENT_DEVICE_DAEMON_TIMEOUT_MS` (default `90000`, for example `120000`)
27
31
 
28
32
  If daemon startup fails with stale metadata hints, clean stale files and retry:
29
33