Migrating to 6.0.0 from Previous Versions
ForeSee Android SDK v6.0.0 contains the following breaking changes:
-
Methods marked deprecated in previous versions have been removed. Modern alternatives exist for each of the removed methods. Removed methods include:
- Typeless contact details getters/setters
- Redundant CPP getters/setters
-
All Trigger/CxMeasure functionality that previously resided in the main
ForeSee
class was moved toForeSeeCxMeasure
. In most cases updating only requires calling the desired method onForeSeeCxMeasure
instead ofForeSee
. For example:
ForeSee.checkIfEligibleForSurvey();
is now...
ForeSeeCxMeasure.checkIfEligibleForSurvey();
See the latest API docs for up-to-date method signatures and functionality.
Updated over 2 years ago