android userToken

Hi Guys,
In iOS app I do this to get user token:
let user = self.backendless.userService.login(email, password)
self.userIOSToken = user?getToken() 'This Works
but in Android, user.getToken() isn’t available so I do this:
userToken = UserTokenStorageFactory.instance().getStorage().get();
However if then compare the userToken through an ios webapp javascript app withvar token = Backendless.LocalCache.get(‘user-token’); then this token does not equal the userToken, like it does with the useriOSToken token matching Backendless.localCache.get(‘user-token’)
Hope this makes sense, can you point me in the right direction? Mike

I think I have found logic error in my code. Please forget for the moment unless I come back to you. Sorry!