Hello, recently I updated an app using Construct 3 to target Android 13, but on Google Play console a warning appeared because apps intended for children must not send advertising IDs, so I need to remove the permission: com.google.android.gms.permission.AD_ID
Is there a way to remove this permission on Construct? I googled that this permissions can be removed on Android export project, on the Manifest file using the next code:
<uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove"/>
However, this permission doesn't appear on the file.
Thanks for your help!