@namiml/expo-sdk 3.4.0-dev.202605060437 → 3.4.0-dev.202605111754
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 +35 -0
- package/package.json +4 -6
- package/nami-expo-nami-iap.tgz +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @namiml/expo-sdk
|
|
2
|
+
|
|
3
|
+
Nami's subscription orchestration SDK for Expo. Design, test, and update paywalls and subscriber flows across iOS, Android, and Amazon Fire OS — without app releases.
|
|
4
|
+
|
|
5
|
+
Most subscription teams invest heavily in acquiring subscribers and building the product they're paying for. The moments in between — where subscribers decide whether to convert, stay, or leave — are still a blind spot. This SDK puts that experience layer under your control: your product team iterates on paywalls and flows from the Nami dashboard, and the SDK reflects changes in production without a new build or store submission.
|
|
6
|
+
|
|
7
|
+
## Supported platforms
|
|
8
|
+
|
|
9
|
+
| Platform | Store / runtime |
|
|
10
|
+
|---|---|
|
|
11
|
+
| iOS | StoreKit 2 |
|
|
12
|
+
| tvOS | StoreKit 2 |
|
|
13
|
+
| Android — Google Play | Play Billing Library 7 |
|
|
14
|
+
| Android — Amazon Fire OS | Amazon IAP 3.x |
|
|
15
|
+
|
|
16
|
+
For Amazon Fire TV and Fire tablet on VegaOS, use [`@namiml/vega-sdk`](https://www.npmjs.com/package/@namiml/vega-sdk).
|
|
17
|
+
|
|
18
|
+
## Requirements
|
|
19
|
+
|
|
20
|
+
- Expo SDK ≥ 50
|
|
21
|
+
- React Native ≥ 0.72
|
|
22
|
+
- iOS 15+ / tvOS 15+
|
|
23
|
+
- Android API 26+
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx expo install @namiml/expo-sdk
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Run `npx expo prebuild` to link the native IAP module.
|
|
32
|
+
|
|
33
|
+
## Documentation
|
|
34
|
+
|
|
35
|
+
[docs.namiml.com](https://docs.namiml.com)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@namiml/expo-sdk",
|
|
3
|
-
"version": "3.4.0-dev.
|
|
3
|
+
"version": "3.4.0-dev.202605111754",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Nami Expo SDK — paywall and subscription management for Expo apps",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -17,9 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|
|
20
|
-
"src"
|
|
21
|
-
"nami-sdk-core.tgz",
|
|
22
|
-
"nami-expo-nami-iap.tgz"
|
|
20
|
+
"src"
|
|
23
21
|
],
|
|
24
22
|
"scripts": {
|
|
25
23
|
"build": "NAMI_SDK_ENV=development rollup -c",
|
|
@@ -31,10 +29,10 @@
|
|
|
31
29
|
"prepublishOnly": "yarn clean && yarn build:prod"
|
|
32
30
|
},
|
|
33
31
|
"dependencies": {
|
|
34
|
-
"@namiml/expo-nami-iap": "3.4.0-dev.202605060437",
|
|
35
|
-
"@namiml/sdk-core": "3.4.0-dev.202605060437",
|
|
36
32
|
"@amazon-devices/expo-asset": "~2.0.0",
|
|
37
33
|
"@amazon-devices/react-native-kepler": "^2.0.1758683737",
|
|
34
|
+
"@namiml/expo-nami-iap": "3.4.0-dev.202605111754",
|
|
35
|
+
"@namiml/sdk-core": "3.4.0-dev.202605111754",
|
|
38
36
|
"react-native-qrcode-svg": "^6.3.21",
|
|
39
37
|
"react-native-svg": "^15.15.4"
|
|
40
38
|
},
|
package/nami-expo-nami-iap.tgz
DELETED
|
Binary file
|