I get "Exported receiver does not require permission" warning for Branch Metrics install listener.
<receiver android:name="io.branch.referral.InstallListener" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
Above install listener is fully functional, but I am not sure if I can safely ignore this warning message.
What permission should I add to remove that warning and still have functional install listener?