Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
react-native-iap
Advanced tools
We are willing to share same in-app-purchase experience for both android and ios platform and will continuously merge methods which are standing alone.
Android iap is implemented with iap version 3 which is currently recent.
react-native-iap@0.2.0 has been published and it is recommended to use version after 0.2.0
from 2018/01/23
.
react-native-iap
module versions that are not described in change logs
may not run as expected so please refer to version mentioned in Changelogs
below.
Recent breaking changes have made from 0.2.12
. Please read the changelogs below. The summary of change is that it now returns receipt in different format.
Changes from react-native-iap@0.1.*
to react-native-iap@0.2.*
is that you have prepare()
method deprecated which you should call before using RNIap
methods. Now you have to call prepareAndroid()
instead just to know that it is just android dependent method.
Also to import module, previously in react-native-iap@0.1.*
you had to import RNIap from 'react-native-iap'
but now you have to do like import * as RNIap from 'react-native-iap'
.
For new method, refreshAllItems has been implemented for both ios and android. This feature will support senario for non-consumable products.
Also there are some other methods that is not supported in ios and implemented in android. You can see more in Changelogs below.
Lastly, this module also supports types for typescript users from 0.2.5
.
buySubscribeItem
callback.homepage
now is mandatory attribute in cocoapods from pull request.buyItem
cancel callback.Func | Param | Return | Description |
---|---|---|---|
prepareAndroid | Promise | Prepare IAP module for android. Should be called in android before using any methods in RNIap. | |
getItems | { android: [], ios: [] } | Promise | get purchasable items in array. |
getSubscribeItems | string | Promise | Get subscription items. |
buyItem | json object | Promise | Purchase item. |
buySubscribeItem | string | Promise | Buy subscription item. |
refreshAllItems | Promise | Refresh all items to make them available to buy again. | |
refreshPurchaseItemsAndroid | string | Promise | refresh purchased items for android. What is different from refreshAllItems is that this method can get parameter to refresh INAPP items or SUBS items. |
getPurchaseItemsAndroid | string | Promise | get purchased items for android. This method also gets parameter to refresh INAPP items or SUBS items. |
consumeItemAndroid | string | Promise | consume item for android. After buying some item from consumable item in android, you can use this method to consume it. Therefore you can purchase the item again. |
https://www.npmjs.com/package/react-native-iap
https://github.com/dooboolab/react-native-iap
$ npm install react-native-iap --save
$ react-native link react-native-iap
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-iap
and add RNIap.xcodeproj
libRNIap.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)<android/app/src/main/java/[...]/MainActivity.java
import com.reactlibrary.RNIapPackage;
to the imports at the top of the filenew RNIapPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-iap'
project(':react-native-iap').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-iap/android')
android/app/build.gradle
:
compile project(':react-native-iap')
You can look in the RNIapExample folder to try the example. Below is basic implementation which is also provided in RNIapExample project.
First thing you should do is to define your items for iOS and android separately like defined below.
import * as RNIap from 'react-native-iap';
const itemSkus = {
ios: [
'com.cooni.point1000',
'com.cooni.point5000',
],
android: [
'point_1000',
'5000_point',
],
};
Next, call the prepare function (ios it's not needed, but android it is. No need to check platform though since nothing will happen in ios:
async preparing function() {
try {
const message = await RNIap.prepareAndroid()
// Ready to call RNIap.getItems()
} catch(errorCode) {
// Depending on the situation, Android will have a different error code. Handle accordingly. Visit the link below for current info
// https://developer.android.com/reference/com/android/billingclient/api/BillingClient.BillingResponse.html
// This catch will never be called on ios
/*
-2: FEATURE_NOT_SUPPORTED
-1: SERVICE_DISCONNECTED
0: SUCCESS (should never be successful since only errors are caught)
1: USER_CANCELED
2: SERVICE_UNAVAILABLE
3: BILLING_UNAVAILABLE
4: ITEM_UNAVAILABLE
5: DEVELOPER_ERROR
6: ERROR
7: ITEM_ALREADY_OWNED
8: ITEM_NOT_OWNED
*/
}
}
Once you called prepareAndroid(), call getItems(). Both are async funcs. You can do it in componentDidMount(), or other area as appropriate for you app. Since a user may first start your app with a bad internet connection, then later have an internet connection, making preparing/getting items more than once may be a good idea. Like if the user has no IAPs available when the app first starts, you may want to check again when the user enters the your IAP store.
async componentDidMount() {
try {
const message = await RNIap.prepareAndroid()
const items = await RNIap.getItems(itemSkus)
this.setState({items})
} catch(errorCode) {
}
}
ios | android | info | |
---|---|---|---|
price | ✓ | ✓ | will return localizedPrice on Android (default), or a decimal point number on iOS (default) |
productId | ✓ | ✓ | returns a string needed to purchase the item later |
currency | ✓ | ✓ | returns the currency code |
localizedPrice | ✓ | ✓ | Use localizedPrice if you want to display the price to the user so you don't need to worry about currency symbols. |
title | ✓ | ✓ | returns the title Android and localizedTitle on iOS |
description | ✓ | ✓ | returns the description on Android and localizedDescription on iOS |
type | ✓ | returns SKU type | |
price_currency | ✓ | same as currency, but left in here to not break any code users may have written before |
Once you have called getItems(), and you have a valid response, you can call buyItem().
const receipt = await RNIap.buyItem('com.cooni.point1000');
// above will return receipt string which can be used to validate on your server.
In RNIapExample, at receiving receipt string, main page will navigate to Second.js.
this.setState({progressTitle:"Please wait..."});
RNIap.buyItem('com.cooni.point1000').then(receipt=>{
this.setState({
receipt:receipt.data, // save the receipt if you need it, whether locally, or to your server.
progressTitle:"Purchase Successful!",
points:this.state.points + 1000
});
}).catch(error=>{
// resetting UI
this.setState({progressTitle:"Buy 1000 Points for only $0.99"})
if (Platform.OS == 'ios') {
if (error.code == 2) {
// ios error.code 2 means that the user cancelled. No need to alert them. Just reset the UI.
} else {
// ios error.description gives a so-so English description of the error that the user should be able to understand.
// You could also give your own descriptions based on error.code instead:
// https://developer.apple.com/documentation/storekit/skerror.code
alert(error.description)
}
} else {
// haven't added specific error handling yet for android. todo.
alert("Purchase Unsuccessful");
}
})
buySubscribeItem = async(sku) => {
try {
console.log('buyItem: ' + sku);
const receipt = await RNIap.buyItem(sku);
// ios case parsing 리턴값이 어레이가 아님... 0, 1 를 키로 갖는 객체임..
console.log(receipt);
this.setState({ receipt: receipt.data }, () => this.goToNext());
} catch (err) {
console.log(`${err}`);
Alert.alert(`${err}`);
}
}
Subscribable products can be included in item object and purchased just like consumable product. Users can cancel subscriptions by using the iOS System Settings.
Non consumable products can be restored after user deletes the app and redownloads. Things like a Premium Version should be restorable. Currently for iOS / Android. Refer to RNIapExample's source code.
The restoring/refreshing processes for iOS and Android differ. It's similar, though function names and the exact processes are slightly different. Using RNIap.refreshAllItems() will achieve the same effect for both iOS and Android. Note that we added a restoreIosNonConsumableProducts() function to the module for iOS use. You do not need to call this. Just use refreshAllItems(). (We may remove the iOS part in the refreshAllItems() function in the future)
restorePreProdducts = async() => {
try {
const results = await RNIap.refreshAllItems() // cross platform case
let restoredTitles = ""
results.forEach(result=>{
if (result.productIdentifier == "com.mywebsite.MyAppPremiumVersion") {
this.setState({premium:true})
restoredTitles += "Premium Version"
} else if (result.productIdentifier == "com.mywebsite.MyAppRemoveAds") {
this.setState({ads:false})
restoredTitles += restoredTitles.length > 0 ? "No Ads" : ", No Ads"
}
})
Alert.alert("Restore Successful", "You successfully restored the following purchases: " + restoredTitles)
} catch(err) {
console.log(err);
Alert.alert(`${err}`);
}
}
Returned results is an array of each transaction (non-consumable) with the following keys:
{ transactionDate, transactionIdentifier, productIdentifier, transactionReceipt }
You need to test with one sandbox account, because the account holds previous purchase history.
Nothing at the moment.
Thanks.
by JJMoon and dooboolab.
FAQs
React Native In App Purchase Module.
The npm package react-native-iap receives a total of 45,335 weekly downloads. As such, react-native-iap popularity was classified as popular.
We found that react-native-iap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.