internetAvailabilityPolicy
The policy used to determine when "Internet is available" for the SDK.
This policy defines the set of Android network capabilities required before the SDK considers the device online. Two built-in presets are available:
InternetAvailabilityPolicy.Internet - Permissive mode: requires only android.net.NetworkCapabilities.NET_CAPABILITY_INTERNET. This may report "online" even when behind a captive portal or when the network is not actually reachable.
InternetAvailabilityPolicy.ValidatedInternet (default) - Strict mode: requires both android.net.NetworkCapabilities.NET_CAPABILITY_INTERNET and android.net.NetworkCapabilities.NET_CAPABILITY_VALIDATED. This ensures the system has verified actual Internet reachability, reducing false positives.
The chosen policy is applied at SDK initialization and used by com.mapbox.dash.sdk.connectivity.ConnectivityChecker to monitor network state.
Defaults to InternetAvailabilityPolicy.ValidatedInternet.