react-native-iap 9.0.0-beta → 9.0.0-beta10
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 +11 -22
- package/RNIap.podspec +33 -18
- package/android/build.gradle +137 -38
- package/android/gradle.properties +8 -0
- package/android/src/play/java/com/dooboolab/RNIap/RNIapModule.kt +75 -62
- package/android/src/play/java/com/dooboolab/RNIap/RNIapPackage.kt +0 -1
- package/android/src/testPlay/java/com/dooboolab/RNIap/{RNIapModuleTestV4.kt → RNIapModuleTest.kt} +48 -34
- package/ios/RNIapIos-Bridging-Header.h +2 -0
- package/ios/RNIapIos.m +14 -1
- package/ios/RNIapIos.swift +903 -883
- package/ios/{RNIap.xcodeproj → RNIapIos.xcodeproj}/project.pbxproj +29 -116
- package/lib/commonjs/__test__/iap.test.js +21 -0
- package/lib/commonjs/__test__/iap.test.js.map +1 -0
- package/lib/commonjs/hooks/useIAP.js +78 -0
- package/lib/commonjs/hooks/useIAP.js.map +1 -0
- package/lib/commonjs/hooks/withIAPContext.js +92 -0
- package/lib/commonjs/hooks/withIAPContext.js.map +1 -0
- package/lib/commonjs/iap.js +585 -0
- package/lib/commonjs/iap.js.map +1 -0
- package/lib/commonjs/index.js +59 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/types/amazon.js +2 -0
- package/lib/commonjs/types/amazon.js.map +1 -0
- package/lib/commonjs/types/android.js +55 -0
- package/lib/commonjs/types/android.js.map +1 -0
- package/lib/commonjs/types/apple.js +165 -0
- package/lib/commonjs/types/apple.js.map +1 -0
- package/lib/commonjs/types/index.js +59 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/module/__test__/iap.test.js +17 -0
- package/lib/module/__test__/iap.test.js.map +1 -0
- package/lib/module/hooks/useIAP.js +68 -0
- package/lib/module/hooks/useIAP.js.map +1 -0
- package/lib/module/hooks/withIAPContext.js +76 -0
- package/lib/module/hooks/withIAPContext.js.map +1 -0
- package/lib/module/iap.js +493 -0
- package/lib/module/iap.js.map +1 -0
- package/lib/module/index.js +6 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/types/amazon.js +2 -0
- package/lib/module/types/amazon.js.map +1 -0
- package/lib/module/types/android.js +44 -0
- package/lib/module/types/android.js.map +1 -0
- package/lib/module/types/apple.js +153 -0
- package/lib/module/types/apple.js.map +1 -0
- package/lib/module/types/index.js +48 -0
- package/lib/module/types/index.js.map +1 -0
- package/{src → lib/typescript}/__test__/iap.test.d.ts +0 -0
- package/{src → lib/typescript}/hooks/useIAP.d.ts +1 -1
- package/{src → lib/typescript}/hooks/withIAPContext.d.ts +1 -1
- package/{src → lib/typescript}/iap.d.ts +16 -12
- package/{src → lib/typescript}/index.d.ts +2 -1
- package/{src → lib/typescript}/types/amazon.d.ts +0 -0
- package/{src → lib/typescript}/types/android.d.ts +0 -0
- package/{src → lib/typescript}/types/apple.d.ts +0 -0
- package/{src → lib/typescript}/types/index.d.ts +53 -22
- package/package.json +87 -57
- package/src/__test__/iap.test.ts +20 -0
- package/src/hooks/useIAP.ts +130 -0
- package/src/hooks/withIAPContext.tsx +160 -0
- package/src/iap.ts +699 -0
- package/src/{index.js → index.ts} +4 -1
- package/src/types/amazon.ts +23 -0
- package/src/types/android.ts +51 -0
- package/src/types/apple.ts +467 -0
- package/src/types/index.ts +209 -0
- package/.editorconfig +0 -10
- package/.flowconfig +0 -11
- package/.monolinterrc +0 -3
- package/.yarn/install-state.gz +0 -0
- package/.yarn/releases/yarn-3.2.0.cjs +0 -785
- package/.yarnrc.yml +0 -3
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
- package/android/gradlew +0 -160
- package/android/gradlew.bat +0 -90
- package/android/src/play/java/com/dooboolab/RNIap/RNIapModuleInterface.kt +0 -44
- package/android/src/play/java/com/dooboolab/RNIap/RNIapModuleV4.kt +0 -656
- package/babel.config.js +0 -10
- package/index.d.ts +0 -3
- package/index.js +0 -3
- package/index.js.flow +0 -9
- package/ios/RNIap.xcodeproj/xcshareddata/xcschemes/RNIap.xcscheme +0 -80
- package/ios/RNIapQueue.swift +0 -36
- package/jest.config.js +0 -194
- package/src/__test__/iap.test.js +0 -59
- package/src/hooks/useIAP.js +0 -141
- package/src/hooks/withIAPContext.js +0 -150
- package/src/iap.js +0 -640
- package/src/types/amazon.js +0 -1
- package/src/types/android.js +0 -22
- package/src/types/apple.js +0 -165
- package/src/types/index.js +0 -40
- package/test/mocks/react-native-modules.js +0 -14
package/README.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# 
|
|
2
2
|
|
|
3
3
|
[](https://npmjs.org/package/react-native-iap)
|
|
4
|
-
|
|
4
|
+
[](https://npmjs.org/package/react-native-iap)
|
|
5
|
+
|
|
5
6
|
[](https://npmjs.org/package/react-native-iap)
|
|
6
7
|
[](https://github.com/dooboolab/react-native-iap/actions/workflows/ci.yml)
|
|
7
|
-
[](https://github.com/dooboolab/react-native-iap/actions/workflows/deploy-documentation.yml)
|
|
8
9
|
[](https://npmjs.org/package/react-native-iap)
|
|
9
10
|
[](https://github.com/dooboolab/react-native-iap)
|
|
10
11
|
[](https://opencollective.com/react-native-iap#backers)
|
|
11
12
|
[](https://github.com/dooboolab/react-native-iap/issues)
|
|
12
13
|
[](https://github.com/dooboolab/react-native-iap/issues?q=is%3Aissue+is%3Aclosed)
|
|
13
14
|
[](https://github.com/dooboolab/react-native-iap/pulls)
|
|
14
|
-
[](https://github.com/dooboolab/react-native-iap/pulls?q=is%3Apr+is%3Aclosed)
|
|
15
|
+
[](https://github.com/dooboolab/react-native-iap/pulls?q=is%3Apr+is%3Aclosed)
|
|
15
16
|
[](https://app.fossa.com/projects/git%2Bgithub.com%2Fdooboolab%2Freact-native-iap?ref=badge_shield)
|
|
16
17
|
|
|
17
18
|
## Documentation
|
|
@@ -20,7 +21,11 @@ Published in [website](https://react-native-iap.dooboolab.com).
|
|
|
20
21
|
|
|
21
22
|
## Announcement
|
|
22
23
|
|
|
23
|
-
-
|
|
24
|
+
- Version `9.0.0` is currently in release candidate. The module migrates android sdk to [play billing library v5](https://qonversion.io/blog/google-play-billing-library-5-0) and iOS sdk to [storekit2](https://developer.apple.com/videos/play/wwdc2021/10114). Our core maintainer [andresesfm](https://github.com/andresesfm) is working hard on this. Please [fund the project](https://opencollective.com/react-native-iap) if you wish to support his effort. The fund goes to maintainers. To try the earlier version please use the `next` package.
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
yarn add react-native-iap@next
|
|
28
|
+
```
|
|
24
29
|
|
|
25
30
|
- Version `8.0.0` has finally landed in Jan 28th. Since this is early release, please use it with caution 🚧. We recommend user to use `>=8.0.0` with react-native `>=0.65.1`. The `next` package is no longer updated until we organize the roadmap for `9.0.0`.
|
|
26
31
|
|
|
@@ -136,25 +141,9 @@ If you're looking for a module going further than react-native-iap, we recommend
|
|
|
136
141
|
|
|
137
142
|
- Please refer to [Blog][blog-config-steps].
|
|
138
143
|
|
|
139
|
-
##
|
|
140
|
-
|
|
141
|
-
- If you are using `react-native-iap@^2.*`, please follow the above README.
|
|
142
|
-
|
|
143
|
-
## Usage
|
|
144
|
-
|
|
145
|
-
You can look in the [`RNIapExample/`][example] folder to try the example.
|
|
146
|
-
|
|
147
|
-
NOTE: To run `RNIapExample` on Android use the variant flag as follows:
|
|
148
|
-
|
|
149
|
-
```
|
|
150
|
-
yarn android --variant=MY_VARIANT
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
where `MY_VARIANT` is `PlayDebug` or `AmazonDebug`
|
|
154
|
-
|
|
155
|
-
Below is basic implementation which is also provided in `RNIapExample` project.
|
|
144
|
+
## Example
|
|
156
145
|
|
|
157
|
-
|
|
146
|
+
Follow [this guide](./IapExample/README.md) to get the example running.
|
|
158
147
|
|
|
159
148
|
## Sponsoring
|
|
160
149
|
|
package/RNIap.podspec
CHANGED
|
@@ -1,23 +1,38 @@
|
|
|
1
|
-
require
|
|
2
|
-
|
|
1
|
+
require "json"
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
|
+
folly_version = '2021.06.28.00-v2'
|
|
5
|
+
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
|
|
3
6
|
|
|
4
7
|
Pod::Spec.new do |s|
|
|
5
|
-
s.name
|
|
6
|
-
s.version
|
|
7
|
-
s.summary
|
|
8
|
-
s.homepage
|
|
9
|
-
s.license
|
|
10
|
-
s.
|
|
11
|
-
|
|
12
|
-
s.
|
|
13
|
-
s.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
:execution_position => :after_compile
|
|
18
|
-
}
|
|
19
|
-
s.swift_version = "4.2"
|
|
8
|
+
s.name = "RNIap"
|
|
9
|
+
s.version = package["version"]
|
|
10
|
+
s.summary = package["description"]
|
|
11
|
+
s.homepage = package["homepage"]
|
|
12
|
+
s.license = package["license"]
|
|
13
|
+
s.authors = package["author"]
|
|
14
|
+
|
|
15
|
+
s.platforms = { :ios => "10.0" }
|
|
16
|
+
s.source = { :git => "https://github.com/dooboolab/react-native-iap.git", :tag => "#{s.version}" }
|
|
17
|
+
|
|
18
|
+
s.source_files = "ios/*.{h,m,mm,swift}"
|
|
19
|
+
|
|
20
20
|
s.requires_arc = true
|
|
21
21
|
|
|
22
|
-
s.dependency
|
|
22
|
+
s.dependency "React-Core"
|
|
23
|
+
|
|
24
|
+
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
25
|
+
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|
|
26
|
+
s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
|
|
27
|
+
s.pod_target_xcconfig = {
|
|
28
|
+
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
|
|
29
|
+
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
s.dependency "React-Codegen"
|
|
33
|
+
s.dependency "RCT-Folly", folly_version
|
|
34
|
+
s.dependency "RCTRequired"
|
|
35
|
+
s.dependency "RCTTypeSafety"
|
|
36
|
+
s.dependency "ReactCommon/turbomodule/core"
|
|
37
|
+
end
|
|
23
38
|
end
|
package/android/build.gradle
CHANGED
|
@@ -1,91 +1,190 @@
|
|
|
1
1
|
buildscript {
|
|
2
|
-
|
|
3
|
-
ext.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
repositories {
|
|
2
|
+
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
|
3
|
+
def kotlinVersion = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["RNIap_kotlinVersion"]
|
|
4
|
+
|
|
5
|
+
repositories {
|
|
7
6
|
google()
|
|
8
7
|
mavenCentral()
|
|
9
8
|
}
|
|
10
9
|
|
|
11
|
-
|
|
12
10
|
dependencies {
|
|
13
|
-
classpath
|
|
14
|
-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$
|
|
11
|
+
classpath "com.android.tools.build:gradle:4.2.2"
|
|
12
|
+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
15
13
|
}
|
|
16
14
|
}
|
|
17
15
|
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
def isNewArchitectureEnabled() {
|
|
17
|
+
return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
|
|
18
|
+
}
|
|
20
19
|
|
|
20
|
+
apply plugin: "com.android.library"
|
|
21
|
+
apply plugin: "kotlin-android"
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
def
|
|
23
|
+
if (isNewArchitectureEnabled()) {
|
|
24
|
+
apply plugin: "com.facebook.react"
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
def getExtOrDefault(name) {
|
|
28
|
+
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties["RNIap_" + name]
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
def getExtOrIntegerDefault(name) {
|
|
32
|
+
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["RNIap_" + name]).toInteger()
|
|
33
|
+
}
|
|
27
34
|
|
|
28
35
|
android {
|
|
29
|
-
compileSdkVersion
|
|
36
|
+
compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
|
|
30
37
|
|
|
31
38
|
defaultConfig {
|
|
32
|
-
minSdkVersion
|
|
33
|
-
targetSdkVersion
|
|
34
|
-
|
|
35
|
-
|
|
39
|
+
minSdkVersion getExtOrIntegerDefault("minSdkVersion")
|
|
40
|
+
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
|
|
41
|
+
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
buildTypes {
|
|
45
|
+
release {
|
|
46
|
+
minifyEnabled false
|
|
47
|
+
}
|
|
36
48
|
}
|
|
49
|
+
|
|
37
50
|
lintOptions {
|
|
38
51
|
abortOnError false
|
|
52
|
+
disable "GradleCompatible"
|
|
39
53
|
}
|
|
54
|
+
|
|
40
55
|
compileOptions {
|
|
41
56
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
42
57
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
43
58
|
}
|
|
59
|
+
|
|
44
60
|
flavorDimensions "store"
|
|
61
|
+
|
|
45
62
|
productFlavors {
|
|
46
|
-
amazon{
|
|
63
|
+
amazon {
|
|
47
64
|
dimension "store"
|
|
48
65
|
}
|
|
49
|
-
|
|
66
|
+
|
|
67
|
+
play {
|
|
50
68
|
dimension "store"
|
|
51
69
|
}
|
|
52
70
|
}
|
|
71
|
+
|
|
53
72
|
testOptions {
|
|
54
73
|
unitTests.returnDefaultValues = true
|
|
55
74
|
}
|
|
56
75
|
}
|
|
57
76
|
|
|
58
77
|
repositories {
|
|
59
|
-
maven {
|
|
60
|
-
// All of React Native (JS, Android binaries) is installed from npm
|
|
61
|
-
url "$rootDir/../node_modules/react-native/android"
|
|
62
|
-
}
|
|
63
|
-
google()
|
|
64
78
|
mavenCentral()
|
|
79
|
+
google()
|
|
80
|
+
|
|
81
|
+
def found = false
|
|
82
|
+
def defaultDir = null
|
|
83
|
+
def androidSourcesName = "React Native sources"
|
|
84
|
+
|
|
85
|
+
if (rootProject.ext.has("reactNativeAndroidRoot")) {
|
|
86
|
+
defaultDir = rootProject.ext.get("reactNativeAndroidRoot")
|
|
87
|
+
} else {
|
|
88
|
+
defaultDir = new File(
|
|
89
|
+
projectDir,
|
|
90
|
+
"/../../../node_modules/react-native/android"
|
|
91
|
+
)
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if (defaultDir.exists()) {
|
|
95
|
+
maven {
|
|
96
|
+
url defaultDir.toString()
|
|
97
|
+
name androidSourcesName
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
logger.info(":${project.name}:reactNativeAndroidRoot ${defaultDir.canonicalPath}")
|
|
101
|
+
found = true
|
|
102
|
+
} else {
|
|
103
|
+
def parentDir = rootProject.projectDir
|
|
104
|
+
|
|
105
|
+
1.upto(5, {
|
|
106
|
+
if (found) return true
|
|
107
|
+
parentDir = parentDir.parentFile
|
|
108
|
+
|
|
109
|
+
def androidSourcesDir = new File(
|
|
110
|
+
parentDir,
|
|
111
|
+
"node_modules/react-native"
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
def androidPrebuiltBinaryDir = new File(
|
|
115
|
+
parentDir,
|
|
116
|
+
"node_modules/react-native/android"
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
if (androidPrebuiltBinaryDir.exists()) {
|
|
120
|
+
maven {
|
|
121
|
+
url androidPrebuiltBinaryDir.toString()
|
|
122
|
+
name androidSourcesName
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
logger.info(":${project.name}:reactNativeAndroidRoot ${androidPrebuiltBinaryDir.canonicalPath}")
|
|
126
|
+
found = true
|
|
127
|
+
} else if (androidSourcesDir.exists()) {
|
|
128
|
+
maven {
|
|
129
|
+
url androidSourcesDir.toString()
|
|
130
|
+
name androidSourcesName
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
logger.info(":${project.name}:reactNativeAndroidRoot ${androidSourcesDir.canonicalPath}")
|
|
134
|
+
found = true
|
|
135
|
+
}
|
|
136
|
+
})
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (!found) {
|
|
140
|
+
throw new GradleException(
|
|
141
|
+
"${project.name}: unable to locate React Native android sources. " +
|
|
142
|
+
"Ensure you have you installed React Native as a dependency in your project and try again."
|
|
143
|
+
)
|
|
144
|
+
}
|
|
65
145
|
}
|
|
66
146
|
|
|
147
|
+
def kotlinVersion = getExtOrDefault("kotlinVersion")
|
|
148
|
+
def playServicesVersion = getExtOrDefault("playServicesVersion")
|
|
149
|
+
def supportLibVersion = getExtOrDefault("supportLibVersion")
|
|
150
|
+
def androidXVersion = getExtOrDefault("androidXVersion")
|
|
151
|
+
def androidXAnnotation = getExtOrDefault("androidXAnnotation")
|
|
152
|
+
def androidXBrowser = getExtOrDefault("androidXBrowser")
|
|
153
|
+
|
|
67
154
|
dependencies {
|
|
68
|
-
implementation
|
|
69
|
-
|
|
155
|
+
implementation "com.facebook.react:react-native:+"
|
|
156
|
+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
157
|
+
|
|
158
|
+
testImplementation "junit:junit:4.13.2"
|
|
70
159
|
testImplementation "io.mockk:mockk:1.12.4"
|
|
71
|
-
|
|
72
|
-
|
|
160
|
+
|
|
161
|
+
playImplementation "com.android.billingclient:billing-ktx:5.0.0"
|
|
73
162
|
playImplementation "com.google.android.gms:play-services-base:$playServicesVersion"
|
|
74
|
-
amazonImplementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
75
163
|
|
|
76
|
-
|
|
77
|
-
|
|
164
|
+
amazonImplementation fileTree(dir: "libs", include: ["*.jar"])
|
|
165
|
+
|
|
78
166
|
if (supportLibVersion && androidXVersion == null) {
|
|
79
167
|
implementation "com.android.support:support-annotations:$supportLibVersion"
|
|
80
168
|
implementation "com.android.support:customtabs:$supportLibVersion"
|
|
81
169
|
} else {
|
|
82
170
|
def defaultAndroidXVersion = "1.2.0"
|
|
171
|
+
|
|
83
172
|
if (androidXVersion == null) {
|
|
84
173
|
androidXVersion = defaultAndroidXVersion
|
|
85
174
|
}
|
|
86
|
-
|
|
87
|
-
def
|
|
88
|
-
|
|
89
|
-
|
|
175
|
+
|
|
176
|
+
def annotationVersion = androidXAnnotation ? androidXAnnotation : androidXVersion
|
|
177
|
+
def browserVersion = androidXBrowser ? androidXBrowser : androidXVersion
|
|
178
|
+
|
|
179
|
+
implementation "androidx.annotation:annotation:$annotationVersion"
|
|
180
|
+
implementation "androidx.browser:browser:$browserVersion"
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
if (isNewArchitectureEnabled()) {
|
|
185
|
+
react {
|
|
186
|
+
jsRootDir = file("../src/")
|
|
187
|
+
libraryName = "RNIap"
|
|
188
|
+
codegenJavaPackageName = "com.reactnativeiap"
|
|
90
189
|
}
|
|
91
190
|
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
RNIap_kotlinVersion=1.7.0
|
|
2
|
+
RNIap_minSdkVersion=21
|
|
3
|
+
RNIap_targetSdkVersion=31
|
|
4
|
+
RNIap_compileSdkVersion=31
|
|
5
|
+
RNIap_buildToolsVersion=30.0.2
|
|
6
|
+
RNIap_ndkversion=21.4.7075529
|
|
7
|
+
RNIap_playServicesVersion=17.6.0
|
|
8
|
+
|
|
1
9
|
android.useAndroidX=true
|
|
2
10
|
android.enableJetifier=true
|