Hi,
we are distributing our first Defold app through the Play Store.
I released the apk as an alpha internal distribution, and the PlayStore listing is showing “Uses in-app purchase” under the “Install button”.
We do not implement IAP in our app, so having this tag could discourage some users to download it.
How do we disable in-app purchases completely? Our game.settings file only shows 2 options:
- Google Play
- Amazon
We also removed all the extra unused features from the AndroidManifest, such as advertising, GCM and the likes.
In doing so the game crashes at launch on Android devices, for it requires:
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
Which means that the DefoldActivity is using PlayServices to do something, right?
We do not need GCM, Ads, IAP etc…
How can we deactivate extra functionalities in a clean way?
Moreover, where can we find what frameworks are used under the hood to comply with the various regulations?
Thanks in advance!