react-native-acoustic-connect-beta 19.0.7 → 19.0.8
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.
- package/CHANGELOG.md +5 -0
- package/ConnectConfig.example.json +15 -0
- package/README.md +121 -7
- package/android/src/main/assets/ConnectBasicConfig.properties +1 -1
- package/cli/__tests__/doctor.test.mjs +88 -0
- package/cli/doctor.mjs +23 -5
- package/package.json +4 -2
- package/scripts/reviewConnectConfig.js +6 -1
- package/scripts/ConnectConfig.json +0 -180
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## 19.0.8 (2026-07-03)
|
|
2
|
+
|
|
3
|
+
### Reverts
|
|
4
|
+
|
|
5
|
+
* Revert "Beta ReactNativeConnect build: 18.0.36" ([609ad7d](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/commit/609ad7d3244ec06f27dced5864d40585c5b3c9cf))
|
|
1
6
|
## 19.0.7 (2026-07-03)
|
|
2
7
|
|
|
3
8
|
### Reverts
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Connect": {
|
|
3
|
+
"AndroidNotificationIconResName": "ic_notification",
|
|
4
|
+
"AndroidVersion": "11.0.12-beta",
|
|
5
|
+
"AppKey": "YOUR_CONNECT_APP_KEY_HERE",
|
|
6
|
+
"KillSwitchUrl": "YOUR_KILL_SWITCH_URL_HERE",
|
|
7
|
+
"PostMessageUrl": "YOUR_POST_MESSAGE_URL_HERE",
|
|
8
|
+
"PushEnabled": false,
|
|
9
|
+
"iOSAppGroupIdentifier": "YOUR_APP_GROUP_ID_HERE",
|
|
10
|
+
"iOSDevelopmentTeam": "YOUR_TEAM_ID",
|
|
11
|
+
"iOSPushMode": "automatic",
|
|
12
|
+
"iOSVersion": "",
|
|
13
|
+
"useRelease": false
|
|
14
|
+
}
|
|
15
|
+
}
|
package/README.md
CHANGED
|
@@ -84,6 +84,81 @@ Field summary (see [API reference](#api-reference) for full semantics):
|
|
|
84
84
|
| `iOSAppGroupIdentifier` | `null` | iOS App Group shared with the Notification Service / Notification Content extension. |
|
|
85
85
|
| `AndroidNotificationIconResName` | `null` | Drawable resource name (no extension) for the Android notification small icon. |
|
|
86
86
|
|
|
87
|
+
### What `npm install` / `pod install` do for you
|
|
88
|
+
|
|
89
|
+
Both commands run bootstrap steps against **your** project, not just the
|
|
90
|
+
package's own build:
|
|
91
|
+
|
|
92
|
+
- `npm install` triggers a postinstall step that (idempotently, best-effort):
|
|
93
|
+
- scaffolds a starter `ConnectConfig.json` at your project root if one
|
|
94
|
+
isn't already there,
|
|
95
|
+
- adds the Android permissions Connect needs
|
|
96
|
+
(`INTERNET`, `ACCESS_NETWORK_STATE`, `ACCESS_WIFI_STATE`,
|
|
97
|
+
`ACCESS_FINE_LOCATION`) to `android/app/src/main/AndroidManifest.xml`,
|
|
98
|
+
- wires `android/app/build.gradle` to apply the SDK's `config.gradle`.
|
|
99
|
+
- `pod install` merges your `ConnectConfig.json` into the iOS pod's
|
|
100
|
+
generated config bundle at install time (see the podspec).
|
|
101
|
+
|
|
102
|
+
None of this touches files outside your project's `android/`/`ios/`
|
|
103
|
+
directories, and re-running either command is safe. After install, run
|
|
104
|
+
`npx acoustic-connect doctor` to validate the result — see
|
|
105
|
+
[Setup CLI](#setup-cli-acoustic-connect) below.
|
|
106
|
+
|
|
107
|
+
## Setup CLI (`acoustic-connect`)
|
|
108
|
+
|
|
109
|
+
The package ships a small CLI, installed as `acoustic-connect` (invoke it with
|
|
110
|
+
`npx acoustic-connect <command>`), that validates and scaffolds the native
|
|
111
|
+
side of an integration. Both commands auto-detect bare RN vs. Expo and are
|
|
112
|
+
idempotent — safe to re-run, and they never overwrite a file that's already
|
|
113
|
+
there.
|
|
114
|
+
|
|
115
|
+
### `npx acoustic-connect doctor [dir] [--require-push]`
|
|
116
|
+
|
|
117
|
+
Checks the things that otherwise fail late and confusingly at build time:
|
|
118
|
+
|
|
119
|
+
- Node version.
|
|
120
|
+
- `ConnectConfig.json` values — `AppKey`, `PostMessageUrl` / `KillSwitchUrl`
|
|
121
|
+
(must be real `https` URLs, not the placeholder host), `iOSAppGroupIdentifier`
|
|
122
|
+
format, `iOSDevelopmentTeam` format.
|
|
123
|
+
- Android identifiers — the package/namespace is a Java-safe name, and it has
|
|
124
|
+
a matching client in `google-services.json` (Expo also checks for a stale
|
|
125
|
+
`android/` from an incremental `expo prebuild` after an `android.package`
|
|
126
|
+
change).
|
|
127
|
+
- iOS entitlements — bare projects need `aps-environment` + an App Group
|
|
128
|
+
entitlement (from `setup-ios-push`, below, or hand-authored).
|
|
129
|
+
- (macOS only) whether a local Apple Development signing identity is
|
|
130
|
+
installed, when push is on.
|
|
131
|
+
|
|
132
|
+
The push-related checks above are **hard failures** only when
|
|
133
|
+
`Connect.PushEnabled` is `true` (or `--require-push` is passed) — a non-push
|
|
134
|
+
integration only needs `AppKey`. `doctor` exits non-zero on any failure, so
|
|
135
|
+
it's usable as a CI gate (`npx acoustic-connect doctor --require-push`).
|
|
136
|
+
|
|
137
|
+
`dir` defaults to the current directory. If `ConnectConfig.json` is missing,
|
|
138
|
+
`doctor` scaffolds it first (from a project-local `ConnectConfig.example.json`
|
|
139
|
+
if you have one, else from the copy bundled with the package) before running
|
|
140
|
+
the checks above — so it's also a fine first command to run in a fresh
|
|
141
|
+
project.
|
|
142
|
+
|
|
143
|
+
### `npx acoustic-connect setup-ios-push [dir]`
|
|
144
|
+
|
|
145
|
+
Bare-workflow only — the Expo Config Plugin does the equivalent automatically
|
|
146
|
+
on `expo prebuild`. Scaffolds the two iOS push extensions:
|
|
147
|
+
|
|
148
|
+
- `ConnectNSE` (Notification Service Extension — rich-media attachments,
|
|
149
|
+
delivery tracking)
|
|
150
|
+
- `ConnectNCE` (Notification Content Extension — expanded rich-media UI)
|
|
151
|
+
|
|
152
|
+
It writes each extension's Swift source, `Info.plist`, and entitlements from
|
|
153
|
+
the SDK's templates (substituting your App Group), adds the App Group +
|
|
154
|
+
`aps-environment` entitlement to the host app if it doesn't have one yet, and
|
|
155
|
+
wires both targets into your `.xcodeproj` via a bundled Ruby script — which
|
|
156
|
+
needs `ruby` and the `xcodeproj` gem (`gem install xcodeproj`; ships with
|
|
157
|
+
CocoaPods, so most Mac dev setups already have it).
|
|
158
|
+
|
|
159
|
+
Requires macOS and `Connect.iOSAppGroupIdentifier` already set in
|
|
160
|
+
`ConnectConfig.json` — run `doctor` first if it's missing.
|
|
161
|
+
|
|
87
162
|
## Using with Expo SDK 55+
|
|
88
163
|
|
|
89
164
|
Expo SDK 55 and newer is supported via the bundled Expo Config Plugin.
|
|
@@ -409,11 +484,36 @@ releases. Match the version rather than bypass it.
|
|
|
409
484
|
|
|
410
485
|
### iOS — push session reaches the collector but no notifications arrive (no APNs token)
|
|
411
486
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
487
|
+
**Fingerprint:** analytics and `pushRegistration` still reach the collector
|
|
488
|
+
normally, but `mobileToken` stays `null` forever — and, notably, **no
|
|
489
|
+
`didFailToRegisterForRemoteNotificationsWithError` (or any push-related
|
|
490
|
+
failure) shows up in logs either.** It just silently never happens. That
|
|
491
|
+
absence of any error is what makes this look like a missing/broken app-side
|
|
492
|
+
callback or an SDK bug at first glance; it's almost always a signing
|
|
493
|
+
artifact instead. Run `npx acoustic-connect doctor` first — it detects this
|
|
494
|
+
exact condition (missing/invalid `iOSDevelopmentTeam`, no Development
|
|
495
|
+
certificate) up front, before you go digging through portal config.
|
|
496
|
+
|
|
497
|
+
Cause: a CLI build (`expo run:ios` / `react-native run-ios` / `xcodebuild`)
|
|
498
|
+
doesn't auto-pick a signing team the way the Xcode GUI does. With no team, it
|
|
499
|
+
signs ad-hoc and **drops the `aps-environment` entitlement**, so iOS issues no
|
|
500
|
+
APNs token — the app still launches and analytics reach the collector, but no
|
|
501
|
+
`pushRegistration` with a `mobileToken` is ever sent.
|
|
502
|
+
|
|
503
|
+
**Setting `Connect.iOSDevelopmentTeam` in `ConnectConfig.json` by itself does
|
|
504
|
+
nothing.** It's just a source value — it has no effect on the build until
|
|
505
|
+
`expo prebuild` / `npx acoustic-connect setup-ios-push` actually stamps
|
|
506
|
+
`DEVELOPMENT_TEAM` onto the host **and** the `ConnectNSE` **and** `ConnectNCE`
|
|
507
|
+
targets in the generated `.pbxproj`. Re-run that step any time
|
|
508
|
+
`iOSDevelopmentTeam` changes, and after every fresh clone — a teammate's
|
|
509
|
+
machine may already have the stamp baked in from a prior run; yours doesn't
|
|
510
|
+
until you run it too. This is the classic "works for me, not for them" trap:
|
|
511
|
+
every portal-side check (App ID push capability, provisioning profile,
|
|
512
|
+
entitlements file contents, App Group registration, `.p8` key upload) can
|
|
513
|
+
look perfect and still not reflect what's actually embedded in the binary
|
|
514
|
+
that got installed on the device.
|
|
515
|
+
|
|
516
|
+
Fix:
|
|
417
517
|
|
|
418
518
|
1. Set `Connect.iOSDevelopmentTeam` (10-char Apple Team ID) in
|
|
419
519
|
`ConnectConfig.json` (or pass the `iosDevelopmentTeam` plugin prop). Re-run
|
|
@@ -423,8 +523,22 @@ token — the app still launches and analytics reach the collector, but no
|
|
|
423
523
|
ID added in Xcode → Settings → Accounts, so a Development certificate +
|
|
424
524
|
profiles are provisioned.
|
|
425
525
|
|
|
426
|
-
|
|
427
|
-
|
|
526
|
+
**Verify the fix actually landed** — rerunning the steps above isn't proof by
|
|
527
|
+
itself; confirm the build artifacts directly:
|
|
528
|
+
|
|
529
|
+
```bash
|
|
530
|
+
# 1. DEVELOPMENT_TEAM must be stamped on the host AND both push extensions
|
|
531
|
+
grep DEVELOPMENT_TEAM ios/*.xcodeproj/project.pbxproj
|
|
532
|
+
|
|
533
|
+
# 2. The *installed* binary must carry the entitlement — check the actual
|
|
534
|
+
# .app, not just the source .entitlements file in your repo
|
|
535
|
+
codesign -d --entitlements :- --xml /path/to/YourApp.app
|
|
536
|
+
# must show aps-environment in the output
|
|
537
|
+
```
|
|
538
|
+
|
|
539
|
+
If `DEVELOPMENT_TEAM` is missing for any of the three targets, or `codesign`
|
|
540
|
+
doesn't show `aps-environment`, the stamp didn't take (or a stale build was
|
|
541
|
+
reused) — re-run `setup-ios-push` / `prebuild` and do a clean rebuild.
|
|
428
542
|
|
|
429
543
|
### iOS — Expo Android build fails: `No matching client found for package name …`
|
|
430
544
|
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
// Copyright (C) 2026 Acoustic, L.P. All rights reserved.
|
|
2
|
+
//
|
|
3
|
+
// Unit tests for ensureConnectConfig's local→bundled→missing fallback in
|
|
4
|
+
// cli/doctor.mjs. Uses Node's built-in test runner (node:test) — no build
|
|
5
|
+
// step needed, cli/ is plain ESM.
|
|
6
|
+
//
|
|
7
|
+
// npm run test:cli
|
|
8
|
+
|
|
9
|
+
import { test } from 'node:test'
|
|
10
|
+
import assert from 'node:assert/strict'
|
|
11
|
+
import * as fs from 'node:fs'
|
|
12
|
+
import * as os from 'node:os'
|
|
13
|
+
import * as path from 'node:path'
|
|
14
|
+
|
|
15
|
+
import { ensureConnectConfig } from '../doctor.mjs'
|
|
16
|
+
import { Reporter } from '../lib.mjs'
|
|
17
|
+
|
|
18
|
+
function tmpDir() {
|
|
19
|
+
return fs.mkdtempSync(path.join(os.tmpdir(), 'connect-doctor-test-'))
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// ensureConnectConfig's 'exists' branch reports as `pass('ConnectConfig.json present')`
|
|
23
|
+
// (label includes the detail) while the other branches use a plain
|
|
24
|
+
// 'ConnectConfig.json' label with a separate detail string — match by prefix
|
|
25
|
+
// so the assertion doesn't depend on that formatting quirk.
|
|
26
|
+
function statusFor(reporter, labelPrefix) {
|
|
27
|
+
return reporter.results.find((r) => r.label.startsWith(labelPrefix))?.status
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
test('ensureConnectConfig: prefers a project-local ConnectConfig.example.json over the bundled one', () => {
|
|
31
|
+
const dir = tmpDir()
|
|
32
|
+
fs.writeFileSync(
|
|
33
|
+
path.join(dir, 'ConnectConfig.example.json'),
|
|
34
|
+
JSON.stringify({ Connect: { AppKey: 'from-local-example' } }),
|
|
35
|
+
)
|
|
36
|
+
const reporter = new Reporter()
|
|
37
|
+
|
|
38
|
+
ensureConnectConfig(reporter, dir, {
|
|
39
|
+
bundledExample: path.join(dir, 'never-read.json'),
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
const written = JSON.parse(fs.readFileSync(path.join(dir, 'ConnectConfig.json'), 'utf8'))
|
|
43
|
+
assert.equal(written.Connect.AppKey, 'from-local-example')
|
|
44
|
+
assert.equal(statusFor(reporter, 'ConnectConfig.json'), 'warn')
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
test('ensureConnectConfig: falls back to the bundled example when no project-local one exists', () => {
|
|
48
|
+
const dir = tmpDir()
|
|
49
|
+
const bundledDir = tmpDir()
|
|
50
|
+
const bundledExample = path.join(bundledDir, 'ConnectConfig.example.json')
|
|
51
|
+
fs.writeFileSync(bundledExample, JSON.stringify({ Connect: { AppKey: 'from-bundled-example' } }))
|
|
52
|
+
const reporter = new Reporter()
|
|
53
|
+
|
|
54
|
+
ensureConnectConfig(reporter, dir, { bundledExample })
|
|
55
|
+
|
|
56
|
+
const written = JSON.parse(fs.readFileSync(path.join(dir, 'ConnectConfig.json'), 'utf8'))
|
|
57
|
+
assert.equal(written.Connect.AppKey, 'from-bundled-example')
|
|
58
|
+
assert.equal(statusFor(reporter, 'ConnectConfig.json'), 'warn')
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
test('ensureConnectConfig: fails cleanly (no crash, no file written) when both are missing', () => {
|
|
62
|
+
const dir = tmpDir()
|
|
63
|
+
const reporter = new Reporter()
|
|
64
|
+
|
|
65
|
+
ensureConnectConfig(reporter, dir, {
|
|
66
|
+
bundledExample: path.join(dir, 'does-not-exist.json'),
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
assert.equal(fs.existsSync(path.join(dir, 'ConnectConfig.json')), false)
|
|
70
|
+
assert.equal(statusFor(reporter, 'ConnectConfig.json'), 'fail')
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
test('ensureConnectConfig: never overwrites an existing ConnectConfig.json', () => {
|
|
74
|
+
const dir = tmpDir()
|
|
75
|
+
fs.writeFileSync(
|
|
76
|
+
path.join(dir, 'ConnectConfig.json'),
|
|
77
|
+
JSON.stringify({ Connect: { AppKey: 'already-configured' } }),
|
|
78
|
+
)
|
|
79
|
+
const reporter = new Reporter()
|
|
80
|
+
|
|
81
|
+
ensureConnectConfig(reporter, dir, {
|
|
82
|
+
bundledExample: path.join(dir, 'never-read.json'),
|
|
83
|
+
})
|
|
84
|
+
|
|
85
|
+
const written = JSON.parse(fs.readFileSync(path.join(dir, 'ConnectConfig.json'), 'utf8'))
|
|
86
|
+
assert.equal(written.Connect.AppKey, 'already-configured')
|
|
87
|
+
assert.equal(statusFor(reporter, 'ConnectConfig.json'), 'pass')
|
|
88
|
+
})
|
package/cli/doctor.mjs
CHANGED
|
@@ -4,8 +4,9 @@
|
|
|
4
4
|
// Connect integration that otherwise fail late and confusingly at build time:
|
|
5
5
|
// the App Group format, a Java-safe Android package, and the
|
|
6
6
|
// google-services.json package match. It also scaffolds the gitignored
|
|
7
|
-
// ConnectConfig.json from
|
|
8
|
-
//
|
|
7
|
+
// ConnectConfig.json — from a project-local ConnectConfig.example.json if
|
|
8
|
+
// present, else from the copy bundled at the package root — so a fresh
|
|
9
|
+
// project has something to edit.
|
|
9
10
|
//
|
|
10
11
|
// Auto-detects the project shape:
|
|
11
12
|
// - Expo : a root app.json with an `expo` block (identifiers live there;
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
|
|
21
22
|
import fs from 'node:fs'
|
|
22
23
|
import path from 'node:path'
|
|
24
|
+
import {fileURLToPath} from 'node:url'
|
|
23
25
|
|
|
24
26
|
import {
|
|
25
27
|
Reporter,
|
|
@@ -32,6 +34,10 @@ import {
|
|
|
32
34
|
section,
|
|
33
35
|
} from './lib.mjs'
|
|
34
36
|
|
|
37
|
+
// Package root (one level up from cli/) — where the bundled
|
|
38
|
+
// ConnectConfig.example.json ships for real (published) consumers.
|
|
39
|
+
const sdkRoot = path.dirname(path.dirname(fileURLToPath(import.meta.url)))
|
|
40
|
+
|
|
35
41
|
// App Group format per Apple + the Config Plugin's own validator
|
|
36
42
|
// (plugin/src/withConnectNSE.ts: APP_GROUP_PATTERN).
|
|
37
43
|
const APP_GROUP_PATTERN = /^group\.[A-Za-z0-9.-]+$/
|
|
@@ -101,10 +107,22 @@ function checkNode(reporter) {
|
|
|
101
107
|
)
|
|
102
108
|
}
|
|
103
109
|
|
|
104
|
-
// Scaffold the per-developer ConnectConfig.json from
|
|
105
|
-
|
|
110
|
+
// Scaffold the per-developer ConnectConfig.json from an example. Prefers a
|
|
111
|
+
// project-local ConnectConfig.example.json (e.g. this repo's own
|
|
112
|
+
// Examples/bare-workflow and Examples/expo, which commit a customized one) and
|
|
113
|
+
// falls back to the copy bundled with the package — the project-local file
|
|
114
|
+
// generally isn't there for a real (published) consumer.
|
|
115
|
+
//
|
|
116
|
+
// `bundledExample` is overridable purely so cli/__tests__/doctor.test.mjs can
|
|
117
|
+
// exercise the "both missing" branch without touching the real package file.
|
|
118
|
+
export function ensureConnectConfig(
|
|
119
|
+
reporter,
|
|
120
|
+
dir,
|
|
121
|
+
{bundledExample = path.join(sdkRoot, 'ConnectConfig.example.json')} = {},
|
|
122
|
+
) {
|
|
106
123
|
const dest = path.join(dir, 'ConnectConfig.json')
|
|
107
|
-
const
|
|
124
|
+
const localExample = path.join(dir, 'ConnectConfig.example.json')
|
|
125
|
+
const src = fileExists(localExample) ? localExample : bundledExample
|
|
108
126
|
const result = copyIfMissing(src, dest)
|
|
109
127
|
if (result === 'created')
|
|
110
128
|
reporter.warn(
|
package/package.json
CHANGED
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
"plugin/swift",
|
|
92
92
|
"plugin/src",
|
|
93
93
|
"cli",
|
|
94
|
+
"ConnectConfig.example.json",
|
|
94
95
|
"*.podspec",
|
|
95
96
|
"README.md",
|
|
96
97
|
"CHANGELOG.md",
|
|
@@ -217,7 +218,8 @@
|
|
|
217
218
|
"rebuild": "npm run codegen && npm run rebuildExample --prefix ./example",
|
|
218
219
|
"release": "release-it",
|
|
219
220
|
"test": "jest",
|
|
220
|
-
"test:all": "npm test && npm run test:plugin",
|
|
221
|
+
"test:all": "npm test && npm run test:plugin && npm run test:cli",
|
|
222
|
+
"test:cli": "node --test cli/__tests__/",
|
|
221
223
|
"test:plugin": "npm run build:plugin && node --test plugin/__tests__/",
|
|
222
224
|
"test:watch": "jest --watch",
|
|
223
225
|
"typecheck": "tsc --noEmit",
|
|
@@ -227,7 +229,7 @@
|
|
|
227
229
|
"source": "src/index",
|
|
228
230
|
"summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
|
|
229
231
|
"types": "./lib/typescript/src/index.d.ts",
|
|
230
|
-
"version": "19.0.
|
|
232
|
+
"version": "19.0.8",
|
|
231
233
|
"workspaces": [
|
|
232
234
|
"example",
|
|
233
235
|
"Examples/bare-workflow"
|
|
@@ -12,8 +12,13 @@
|
|
|
12
12
|
* Used review ConnectConfig.json is present ot will need to add one.
|
|
13
13
|
*/
|
|
14
14
|
const fs = require('fs');
|
|
15
|
+
const path = require('path');
|
|
15
16
|
const filePathBaseConnectConfig = "../../ConnectConfig.json"
|
|
16
|
-
|
|
17
|
+
// Single source of truth for the template — same file cli/doctor.mjs falls
|
|
18
|
+
// back to for bare/Expo consumers. Do not reintroduce a separate copy here.
|
|
19
|
+
// __dirname-relative (not CWD-relative) so this resolves correctly regardless
|
|
20
|
+
// of the working directory the caller runs this script from.
|
|
21
|
+
const filePathTemplateConnectConfig = path.resolve(__dirname, '..', 'ConnectConfig.example.json')
|
|
17
22
|
|
|
18
23
|
console.log("Run reviewConnectConfig.js");
|
|
19
24
|
|
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Connect": {
|
|
3
|
-
"AndroidVersion": "11.0.12-beta",
|
|
4
|
-
"AppKey": "b6c3709b7a4c479bb4b5a9fb8fec324c",
|
|
5
|
-
"KillSwitchUrl": "https://lib-us-2.brilliantcollector.com/collector/switch/b6c3709b7a4c479bb4b5a9fb8fec324c",
|
|
6
|
-
"PostMessageUrl": "https://lib-us-2.brilliantcollector.com/collector/collectorPost",
|
|
7
|
-
"iOSVersion": "",
|
|
8
|
-
"layoutConfigAndroid": {
|
|
9
|
-
"AppendMapIds": {
|
|
10
|
-
"[w,9290],[v,0]": {
|
|
11
|
-
"mid": "ASimpleUIView"
|
|
12
|
-
},
|
|
13
|
-
"idxPathValue": {
|
|
14
|
-
"mid": "giveAdditionalId2"
|
|
15
|
-
},
|
|
16
|
-
"tag2999999": {
|
|
17
|
-
"mid": "giveAdditionalId1"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"AutoLayout": {
|
|
21
|
-
"ExampleMaskingPage": {
|
|
22
|
-
"CaptureLayoutDelay": 0,
|
|
23
|
-
"CaptureLayoutOn": 0,
|
|
24
|
-
"CaptureScreenVisits": false,
|
|
25
|
-
"CaptureScreenshotOn": 0,
|
|
26
|
-
"CaptureUserEvents": false,
|
|
27
|
-
"DisplayName": "",
|
|
28
|
-
"Masking": {
|
|
29
|
-
"HasCustomMask": true,
|
|
30
|
-
"HasMasking": true,
|
|
31
|
-
"MaskAccessibilityIdList": [
|
|
32
|
-
|
|
33
|
-
],
|
|
34
|
-
"MaskAccessibilityLabelList": [
|
|
35
|
-
|
|
36
|
-
],
|
|
37
|
-
"MaskIdList": [
|
|
38
|
-
"^9[0-9][0-9][0-9]$",
|
|
39
|
-
"^\\[wvv,0\\],\\[dddv,0\\],\\[v,0\\],\\[v,0\\],\\[v,0\\],\\[b,0\\](.)*$"
|
|
40
|
-
],
|
|
41
|
-
"MaskValueList": [
|
|
42
|
-
"^4[0-9]{12}(?:[0-9]{3})?$",
|
|
43
|
-
"^3[47][0-9]{13}$",
|
|
44
|
-
"^65[4-9][0-9]{13}|64[4-9][0-9]{13}|6011[0-9]{12}|(622(?:12[6-9]|1[3-9][0-9]|[2-8][0-9][0-9]|9[01][0-9]|92[0-5])[0-9]{10})$",
|
|
45
|
-
"^(5[1-5][0-9]{14}|2(22[1-9][0-9]{12}|2[3-9][0-9]{13}|[3-6][0-9]{14}|7[0-1][0-9]{13}|720[0-9]{12}))$"
|
|
46
|
-
],
|
|
47
|
-
"Sensitive": {
|
|
48
|
-
"capitalCaseAlphabet": "X",
|
|
49
|
-
"number": "9",
|
|
50
|
-
"smallCaseAlphabet": "x",
|
|
51
|
-
"symbol": "#"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"NumberOfWebViews": 0,
|
|
55
|
-
"ScreenChange": false,
|
|
56
|
-
"ScreenShot": false
|
|
57
|
-
},
|
|
58
|
-
"GlobalScreenSettings": {
|
|
59
|
-
"CaptureLayoutDelay": 1,
|
|
60
|
-
"CaptureLayoutOn": 2,
|
|
61
|
-
"CaptureScreenVisits": false,
|
|
62
|
-
"CaptureScreenshotOn": 2,
|
|
63
|
-
"CaptureUserEvents": true,
|
|
64
|
-
"DisplayName": "",
|
|
65
|
-
"Masking": {
|
|
66
|
-
"HasCustomMask": true,
|
|
67
|
-
"HasMasking": true,
|
|
68
|
-
"MaskAccessibilityIdList": [
|
|
69
|
-
|
|
70
|
-
],
|
|
71
|
-
"MaskAccessibilityLabelList": [
|
|
72
|
-
|
|
73
|
-
],
|
|
74
|
-
"MaskIdList": [
|
|
75
|
-
|
|
76
|
-
],
|
|
77
|
-
"MaskValueList": [
|
|
78
|
-
|
|
79
|
-
],
|
|
80
|
-
"Sensitive": {
|
|
81
|
-
"capitalCaseAlphabet": "X",
|
|
82
|
-
"number": "9",
|
|
83
|
-
"smallCaseAlphabet": "x",
|
|
84
|
-
"symbol": "#"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"NumberOfWebViews": 0,
|
|
88
|
-
"ScreenChange": true,
|
|
89
|
-
"ScreenShot": true
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"layoutConfigIos": {
|
|
94
|
-
"AppendMapIds": {
|
|
95
|
-
"[w,9290],[v,0]": {
|
|
96
|
-
"mid": "ASimpleUIView"
|
|
97
|
-
},
|
|
98
|
-
"idxPathValue": {
|
|
99
|
-
"mid": "giveAdditionalId2"
|
|
100
|
-
},
|
|
101
|
-
"tag2999999": {
|
|
102
|
-
"mid": "giveAdditionalId1"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"AutoLayout": {
|
|
106
|
-
"ExampleMaskingPage": {
|
|
107
|
-
"CaptureLayoutDelay": 0,
|
|
108
|
-
"CaptureLayoutOn": 0,
|
|
109
|
-
"CaptureScreenVisits": false,
|
|
110
|
-
"CaptureScreenshotOn": 0,
|
|
111
|
-
"CaptureUserEvents": false,
|
|
112
|
-
"DisplayName": "",
|
|
113
|
-
"Masking": {
|
|
114
|
-
"HasCustomMask": true,
|
|
115
|
-
"HasMasking": true,
|
|
116
|
-
"MaskAccessibilityIdList": [
|
|
117
|
-
|
|
118
|
-
],
|
|
119
|
-
"MaskAccessibilityLabelList": [
|
|
120
|
-
|
|
121
|
-
],
|
|
122
|
-
"MaskIdList": [
|
|
123
|
-
"^9[0-9][0-9][0-9]$",
|
|
124
|
-
"^\\[wvv,0\\],\\[dddv,0\\],\\[v,0\\],\\[v,0\\],\\[v,0\\],\\[b,0\\](.)*$"
|
|
125
|
-
],
|
|
126
|
-
"MaskValueList": [
|
|
127
|
-
"^4[0-9]{12}(?:[0-9]{3})?$",
|
|
128
|
-
"^3[47][0-9]{13}$",
|
|
129
|
-
"^65[4-9][0-9]{13}|64[4-9][0-9]{13}|6011[0-9]{12}|(622(?:12[6-9]|1[3-9][0-9]|[2-8][0-9][0-9]|9[01][0-9]|92[0-5])[0-9]{10})$",
|
|
130
|
-
"^(5[1-5][0-9]{14}|2(22[1-9][0-9]{12}|2[3-9][0-9]{13}|[3-6][0-9]{14}|7[0-1][0-9]{13}|720[0-9]{12}))$"
|
|
131
|
-
],
|
|
132
|
-
"Sensitive": {
|
|
133
|
-
"capitalCaseAlphabet": "X",
|
|
134
|
-
"number": "9",
|
|
135
|
-
"smallCaseAlphabet": "x",
|
|
136
|
-
"symbol": "#"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
"NumberOfWebViews": 0,
|
|
140
|
-
"ScreenChange": false,
|
|
141
|
-
"ScreenShot": false
|
|
142
|
-
},
|
|
143
|
-
"GlobalScreenSettings": {
|
|
144
|
-
"CaptureLayoutDelay": 1,
|
|
145
|
-
"CaptureLayoutOn": 2,
|
|
146
|
-
"CaptureScreenVisits": false,
|
|
147
|
-
"CaptureScreenshotOn": 2,
|
|
148
|
-
"CaptureUserEvents": true,
|
|
149
|
-
"DisplayName": "",
|
|
150
|
-
"Masking": {
|
|
151
|
-
"HasCustomMask": true,
|
|
152
|
-
"HasMasking": true,
|
|
153
|
-
"MaskAccessibilityIdList": [
|
|
154
|
-
|
|
155
|
-
],
|
|
156
|
-
"MaskAccessibilityLabelList": [
|
|
157
|
-
|
|
158
|
-
],
|
|
159
|
-
"MaskIdList": [
|
|
160
|
-
|
|
161
|
-
],
|
|
162
|
-
"MaskValueList": [
|
|
163
|
-
|
|
164
|
-
],
|
|
165
|
-
"Sensitive": {
|
|
166
|
-
"capitalCaseAlphabet": "X",
|
|
167
|
-
"number": "9",
|
|
168
|
-
"smallCaseAlphabet": "x",
|
|
169
|
-
"symbol": "#"
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"NumberOfWebViews": 0,
|
|
173
|
-
"ScreenChange": true,
|
|
174
|
-
"ScreenShot": true
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
},
|
|
178
|
-
"useRelease": false
|
|
179
|
-
}
|
|
180
|
-
}
|