Hi I want to include IAP and AdMob together in my Android game. &nbsp;I'm going to have Ads and then a one time in-app purchase to remove them.<br><br>They both require me to add the following to my games engine.cfg<br><br>bluebee's Google Play service module for Android&nbsp;<br><br>[android]<br>modules="org/godotengine/godot/GodotGooglePlayServices"<br><br><br>and the Google Payment module that comes in the demos:<br>

[android]

<br>

modules="org/godotengine/godot/GodotPaymentV3"<br><br><br>However, when I add both together, Godot only chooses one and removes the other from Project Settings.<br><br>This also happens if I try to add them both in Project settings.

Have you tried using an array?<br>

modules=["org/godotengine/godot/GodotGooglePlayServices","org/godotengine/godot/GodotPaymentV3"]<br>

Yes,but unfortunately it just crashes when I open the app on Android.

I've been testing it and they work individually in the same app, but when I try to use the array, it just crashes. Anyone?<br>

5 days later

You must separate the modules by commas:

[android] modules="org/godotengine/godot/GodotGooglePlayServices,org/godotengine/godot/GodotPaymentV3"

6 years later