Skip to content

v0.11.1 upgrade

Ray edited this page Jan 14, 2019 · 2 revisions

In v0.11.1, we changed some class paths. The old paths were deprecated, so we suggest developers to change the class paths earlier.

In this change, you should replace the old paths with new paths as the codes shown below:

from

import io.straas.android.sdk.base.credential.CredentialFailException.NetworkException;
import io.straas.android.sdk.base.credential.CredentialFailException.ServerException;
import io.straas.android.sdk.base.credential.CredentialFailException.WrongInformationException;

to

import io.straas.android.sdk.authentication.credential.CredentialFailException.NetworkException;
import io.straas.android.sdk.authentication.credential.CredentialFailException.ServerException;
import io.straas.android.sdk.authentication.credential.CredentialFailException.WrongInformationException;

In this change, you should replace the old paths with new paths as the codes shown below:

from

import io.straas.android.sdk.base.identity.Identity;

to

import io.straas.android.sdk.authentication.identity.Identity;