Issue mobsf security framework

I have an app in ionic that I am testing security with mobsf and I have the following issue (com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver) is Protected by a permission, but the protection level of the permission should be checked.
Permission: android.permission.INSTALL_PACKAGES
[android: exported = true]

I modify the config.xml

    <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application/receiver" xmlns:tools="http://schemas.android.com/tools">
            <receiver android:enabled="true" android:exported="false" android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" android:permission="android.permission.INSTALL_PACKAGES" tools:replace="android:exported">
                <intent-filter>
                    <action android:name="com.android.vending.INSTALL_REFERRER" />
                </intent-filter>
            </receiver>
        </edit-config>

but I keep getting the same error