AppsFlyerSDK / appsflyer-cordova-plugin

AppsFlyer plugin for Cordova
MIT License
37 stars 71 forks source link

Add new required permission #193

Closed lalmanzar closed 2 years ago

lalmanzar commented 2 years ago

Permission required for Android apps with API level set to 31 (Android 12) or later. https://support.google.com/googleplay/android-developer/answer/6048248

pazlavi commented 2 years ago

Currently, we advise our customers to add the permission on the app level and not in the Plugin / SDK level to make sure they are aware that permission has been added. We will consider adding this on the Plugin/SDK level in the future. For Cordova applications that use target API 31 and above, please add the permission to your config.xml file. More info can be found here Example:

<config-file target="AndroidManifest.xml" parent="/*">
    <uses-permission android:name="com.google.android.gms.permission.AD_ID" />
</config-file>