@radhya/mach 2.1.3 → 2.1.5
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/README.md +26 -5
- package/dist/chunk-Y4SNUFBV.js +400 -0
- package/dist/{credentials-SOUQOL2C.js → credentials-MUSYHFWP.js} +1 -1
- package/dist/index.js +123 -452
- package/docs/push.md +54 -11
- package/expo-plugin/index.js +30 -8
- package/package.json +1 -1
- package/dist/chunk-DX4FCPCX.js +0 -69
package/README.md
CHANGED
|
@@ -16,15 +16,15 @@ Install and wire provider-direct APNs/FCM push in the current linked project:
|
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
mach push setup
|
|
19
|
-
mach
|
|
20
|
-
mach push credentials fcm --file firebase-service-account.json
|
|
19
|
+
mach credentials
|
|
21
20
|
mach push send --user user_123 --title "Hello" --body "Your update is ready."
|
|
22
21
|
mach push status --days 30
|
|
23
22
|
```
|
|
24
23
|
|
|
25
24
|
MACH Push supports Expo development builds and bare React Native. It
|
|
26
25
|
adds a working default permission, registration, receive, and tap flow while
|
|
27
|
-
leaving an editable callback file in the application.
|
|
26
|
+
leaving an editable callback file in the application. The app config only marks
|
|
27
|
+
push as enabled; MACH stores encrypted
|
|
28
28
|
device/provider credentials and aggregate delivery counters,
|
|
29
29
|
but not notification content or per-message history. See
|
|
30
30
|
[MACH Push](docs/push.md).
|
|
@@ -56,7 +56,7 @@ mach build --platform android
|
|
|
56
56
|
| `mach maestro` | Queue managed Maestro tests for a build or artifact |
|
|
57
57
|
| `mach ota` | Setup, publish, list, rollback, and promote OTA updates |
|
|
58
58
|
| `mach submit` | Submit to App Store or Google Play |
|
|
59
|
-
| `mach credentials` | Manage
|
|
59
|
+
| `mach credentials` | Manage build, service, and push notification credentials |
|
|
60
60
|
| `mach credentials:service` | Upload App Store Connect or Google Play service credentials |
|
|
61
61
|
| `mach env` | Manage, list, and download environment variables and secrets |
|
|
62
62
|
| `mach version` | Show and seed DB-owned native version counters |
|
|
@@ -319,7 +319,9 @@ Mach handles the managed macOS submission environment internally. No provider-sp
|
|
|
319
319
|
|
|
320
320
|
## Credential Management
|
|
321
321
|
|
|
322
|
-
Manage iOS certificates, provisioning profiles, Android keystores,
|
|
322
|
+
Manage iOS certificates, provisioning profiles, Android keystores, store
|
|
323
|
+
automation keys, and push notification credentials — all stored securely in the
|
|
324
|
+
Dashboard.
|
|
323
325
|
|
|
324
326
|
```bash
|
|
325
327
|
# Interactive credential manager
|
|
@@ -373,6 +375,25 @@ App Store Connect keys are used for iOS TestFlight submission. Mach stores the k
|
|
|
373
375
|
|
|
374
376
|
Google Play service keys are only needed for Android store submission. They are not signing credentials. A dev package such as `com.example.app.dev` needs its own Google Play service key only if that exact package exists in Google Play and you submit that package.
|
|
375
377
|
|
|
378
|
+
### Push Notification Credentials
|
|
379
|
+
|
|
380
|
+
Provider-direct APNs and FCM credentials use the same credentials flow:
|
|
381
|
+
|
|
382
|
+
```bash
|
|
383
|
+
mach credentials
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
Choose **Push Notifications**. On iOS, Mach can generate one APNs auth key
|
|
387
|
+
with Apple or upload an existing `.p8` key. On Android, upload the Firebase
|
|
388
|
+
service-account JSON once for the selected Android package; the same FCM
|
|
389
|
+
credential serves development, preview, and production. APNs can be saved for
|
|
390
|
+
all environments or only one environment. On Apple's APNs key-limit error,
|
|
391
|
+
Mach can list existing APNs keys, revoke one after confirmation, and retry
|
|
392
|
+
creation in the same session. The Dashboard shows these under **Credentials →
|
|
393
|
+
Service credentials** for the selected bundle identifier or package name. See the
|
|
394
|
+
[MACH Push guide](docs/push.md#generate-the-firebase-service-account-json) for
|
|
395
|
+
the exact Firebase JSON generation steps.
|
|
396
|
+
|
|
376
397
|
## Configuration
|
|
377
398
|
|
|
378
399
|
Create a `mach.config.json` in your project root:
|