Android - try to disable IAP manifest permissions (SOLVED)

Hi.

I know that IAP is solid part of Defold Engine Core. But what if i disable permissions in android manifest related to IAP? Is this trick save normal work of whole Defold Engine Core? What exactly rights must be disabled in manifest? Is only

<uses-permission android:name="com.android.vending.BILLING" />

need to disable ?

My target - avoid any info about IAP purchaces in Google Play on game page description.

Thanks.

Yes, that permission needs to be removed. I’m not sure if this will cause problems when you start the app though. Did you try to remove it and launch the game?

1 Like

Yeah, all is good. Game working in normal flow after disabling permission. Debug build dont any critical output to logcat. Thanks.

1 Like