Setting the initial state for opt-in/opt-out - Android¶
In your AndroidManifest.xml
if you add a meta-data
tag with android:name
set to io.repro.android.EndUserOptInDefault
and android:value
set to true, that would let the user be opted in by default. Setting the value to false
would let the user be opted out by default.
<meta-data
android:name="io.repro.android.EndUserOptInDefault"
android:value="false">
</meta-data>