react-native-nami-sdk 2.0.2 → 2.0.3
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
CHANGED
|
@@ -2,9 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# React Native Bridge for the Nami SDK
|
|
4
4
|
|
|
5
|
-
Nami is
|
|
5
|
+
Nami is easy subscriptions & in-app purchases, with powerful built-in paywalls and A/B testing.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This library helps you easily offer in-app purchases and subscriptions using Apple App Store StoreKit & Google Play Billing APIs.
|
|
8
|
+
- No IAP code to write.
|
|
9
|
+
- Focus on your app experience.
|
|
10
|
+
- All edge cases are handled and no server is required.
|
|
11
|
+
- Includes is powerful built-in paywalls templates, built with native SwiftUI and Jetpack Compose
|
|
12
|
+
- Update paywalls easily using a browser-based paywall CMS.
|
|
13
|
+
- Conduct paywall A/B tests, to improve your conversion rate.
|
|
14
|
+
- Robust subscription analytics, webhooks, and much more.
|
|
15
|
+
|
|
16
|
+
Requires an account with Nami. The free tier is generous and includes everything you need to get up and running.
|
|
17
|
+
|
|
18
|
+
See https://www.namiml.com for more details and to create a free account.
|
|
8
19
|
|
|
9
20
|
## Getting started with React Native and Nami
|
|
10
21
|
|
package/android/build.gradle
CHANGED
|
@@ -74,7 +74,7 @@ dependencies {
|
|
|
74
74
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
75
75
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
76
76
|
|
|
77
|
-
implementation "com.namiml:sdk-android:2.0.
|
|
77
|
+
implementation "com.namiml:sdk-android:2.0.1"
|
|
78
78
|
|
|
79
79
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
80
80
|
}
|
|
@@ -127,7 +127,7 @@ class NamiBridgeModule(reactContext: ReactApplicationContext) :
|
|
|
127
127
|
} else {
|
|
128
128
|
Arguments.createArray()
|
|
129
129
|
}
|
|
130
|
-
val settingsList = mutableListOf("extendedClientInfo:react-native:
|
|
130
|
+
val settingsList = mutableListOf("extendedClientInfo:react-native:2.0.2")
|
|
131
131
|
namiCommandsReact?.toArrayList()?.filterIsInstance<String>()?.let { commandsFromReact ->
|
|
132
132
|
settingsList.addAll(commandsFromReact)
|
|
133
133
|
}
|
package/package.json
CHANGED