Skip to content

mbaasy/react-native-in-app-utils

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-in-app-utils

A react-native wrapper for handling in-app purchases.

Notes

  • You need an Apple Developer account to use in-app purchases.

  • You have to set up your in-app purchases in iTunes Connect first. Follow this tutorial for an easy explanation.

  • You have to test your in-app purchases on a real device, in-app purchases will always fail on the Simulator.

Add it to your project

  1. Run npm install react-native-in-app-utils --save.

  2. Open your project in XCode, right click on Libraries, click Add Files to "Your Project Name" and add InAppUtils.xcodeproj. (situated in node_modules/react-native-in-app-utils) (This then this, just with InAppUtils).

  3. Link libInAppUtils.a with your Libararies. To do that, click on your project folder, select Build Phases in the top bar, scroll to Link Binary with Libraries, press the + at the very bottom and add libInAppUtils.a from the node_modules/react-native-in-app-utils/InAppUtils folder. (Screenshot).

  4. Whenever you want to use it within React code now you just have to do: var InAppUtils = require('NativeModules').InAppUtils;

API

Loading products

You have to load the products first to get the correctly internationalized name and price in the correct currency.

var products = [
   'com.xyz.abc',
];
InAppUtils.loadProducts(products, (error, products) => {
   //update store here.
});

Buy product

var productIdentifier = 'com.xyz.abc';
InAppUtils.purchaseProduct(productIdentifier, (error, identifier) => {
   if(identifier) {
      //unlock store here.
   }
});

Restore payments

InAppUtils.restorePurchases((error, products)=> {
   if(error) {
      AlertIOS.alert('itunes Error', 'Could not connect to itunes store.');
   } else {
      AlertIOS.alert('Restore Successful', 'Successfully restores all your purchases.');
      //unlock store here again.
   }
});

Testing

To test your in-app purchases, you have to run the app on an actual device. Using the iOS Simulator, they will always fail.

  1. Set up a test account ("Sandbox Tester") in iTunes Connect. See the official documentation here.

  2. Run your app on an actual iOS device. To do so, first run the react-native server on the local network instead of localhost. Then connect your iDevice to your Mac via USB and select it from the list of available devices and simulators in the very top bar. (Next to the build and stop buttons)

  3. Open the app and buy something with your Sandbox Tester Apple Account!

About

A react-native wrapper for handling in-app payments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%