*/
protected void checkForDifferentDomains(String url) {
String previousUrl = state.previousInstallInfo.getDownloadUrl();
// perform a domain check not a straight compare
if (info.authPath == null && previousUrl != null) {
HttpUrl old = new HttpUrl(previousUrl);
HttpUrl current = new HttpUrl(url);
if ((current.domain != null && old.domain == null) ||
(current.domain == null && old.domain != null) ||
(current.domain != null && old.domain != null &&
!current.domain.regionMatches(true, 0, old.domain, 0,