Page Summary
-
TermsAndConditionsCheckOptionis an enum used to control terms and conditions checks within the Navigation SDK. -
It offers two options:
ENABLED(default behavior) andSKIPPEDfor cases where the user has already accepted relevant terms. -
When using
SKIPPED, developers are responsible for ensuring prior user consent to the Navigation SDK's Terms of Use. -
It's passed to
NavigationApi.getNavigator()during initialization to configure this behavior.
An enum specifying options for checking terms and conditions. An instance of this can be passed
to NavigationApi.getNavigator(Activity, NavigationApi.NavigatorListener).
Inherited Method Summary
Enum Values
public static final TermsAndConditionsCheckOption ENABLED
Terms and conditions checks are enabled.
public static final TermsAndConditionsCheckOption SKIPPED
Terms and Conditions checks are skipped. Users of this option need to ensure that the user has accepted an appropriate set of Terms and Conditions that encompass the Terms of Use that govern usage of the Navigation SDK.