Is it possible to get different hashcode from same string on different devices? (i got only one device so i can't test it) Or android sdk get same int value from same string on different devices? (I already have a case on .net compact fw and .net fw returns different hashcode for same string)
For example:
int hash = "Enter text".hashCode();
hash == 123445564 on Samsung S3
hash == -16644335 on HTC Desire
hashCode()implementations forString.hashCode()is just a random internal number that is AFAIK only guaranteed to stay the same during runtime of your app, anything beyond is unspecified.