Changelog
- fix to handler deleted/locked customer
- fix bug with SDK-Version in API requests header.
- fix bug with NullPointer in token update service.
- Added
deletePasspointProfile
anddeleteWPA2EnterpriseProfile
methods - In the
logout
are removed the internet profiles installed
- Added method
updateCustomer
- Added
DEBUG_MODE
- Passpoint support
- New create customer function with deduplication on specific parameter
- Extended support of custom policies
Note: this version has not fully compatible with version 1.1.0 (see following migration guide)
The signature of the method
public Future<CustomerCreateResponse> createCustomer(
Customer customer,
Callback<CustomerCreateResponse> onSuccess,
Callback<MobileSDKException> onError);
has been replaced by
public Future<CustomerCreateResponse> createCustomer(
Customer customer,
String deduplicate,
Callback<CustomerCreateResponse> onSuccess,
Callback<MobileSDKException> onError)
To create a customer without deduplication:
cloud4wiSDK.createCustomer(customer,null
The signature of the method
getListOfPolicies
public Future<List<Policy>> getListOfPolicies(
Callback<List<Policy>> onSuccess,
Callback<MobileSDKException> onError);
has been replaced by
public Future<List<String>> getListOfPolicies(
Callback<List<String>> onSuccess,
Callback<MobileSDKException> onError)
- Create customer now support the attributes of the CreateCustomer API v3
- WPA2-Enterprise profile creation support
- Integration with Location SDK
Last modified 7mo ago