android - The same version Google Play Services, responds different and inconsistently on different phones -


given multiple phones having latest , same version, different builds (oem related??) of google play services running the same signed app alpha google play store responding differently on particular phone. 3 out of 4 phones run without issue using works on 3 phones either kitkat or lollipop following code checks if gps available.

 int result = 0;     try {         result = googleplayservicesutil                 .isgoogleplayservicesavailable(this);     } catch (exception e) {         e.printstacktrace();     } 

the 4 phone gets documented error 'the meta-data tag in app's androidmanifest.xml not have right value. expected 6587000 found 7095000.'

how can be?

all of phones have same version of gpservices app installed build # variants.

my client has borrowed nexus 4 phone running 4.4.4 524mb free space , 928mb free ram. phone having issue , returning ... expected 6587000 found 7095000 ... error. seems apk (manifest gps version # , dependency com.google.android.gms:play-services should resolved part of apk , error seems incorrect message.

since google play services proprietary google api, next best steps resolve or debug this?

free space/memory related, oem related, os version related, other?


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -