Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Finally the tools easy to use, is this support for IAP? (In App Purchase) might be good if support for that 

(1 edit)

technically… yes. it does “support” IAP features available within the Android OS via the Capacitor CLI build framework’s support for Android OS related features.

that said, this tool only provides a easy-to-use “single-click-esque” automation of the build tasks and doesn’t actually have any involvement with or control over the actual in-game/in-app features of the game/app since it just gives a GUI (Graphical User Interface) to a process that would normally be done via Command Line.

if you want to use IAP features in your RPG Maker games, you’ll need to handle that with a plugin specific to the game engine you’re using.

And there also a lot of work you need to do

1. Plugin is missing
2. Icon is not useable
3. IAP plugin to support your exe

There’s an RPG Maker MZ plugin and build workflow here that supports IAP via Google Play Store payment method.

Here’s the link to the guide: HackMD MZ Android Deployment Guide

But yeah, there’s not really a good way to implement an “add IAP support” option in this tool since it would require some pretty advanced custom configuration for Capacitor that you would need to implement yourself custom tailored to your project.

The types of app specific config info needed:

  • Google Play Store AppID
  • The IAP “product package” info from the Google Play Store Developer Console related to your game/app.
  • a bunch of other configuration related to the Supported Payment Methods that you want to support.

So yeah, that’s not something that can be added to a tool like this without some serious technical knowledge, on the user’s end, of how Capacitor works. If you want to add IAP support to your game, then I suggest you go ahead and create your own custom Capacitor build workflow from scratch that’s custom tailored to meet your unique requirements.