android - Google+-Package name not getting added to String[]? -
my app keeping "third-party app-exclude-list" package names in string[]
(and serializing sharedpreferences
using method below). works fine, users, google+ isn't getting added list. only happens google+ app. know, g+ app isn't special, it's package name on google play listed com.google.android.apps.plus
, shouldn't confuse saving-algorithm. works fine on own phone, i'm stumped @ causes this, lot of users have reported issue :-/!
public void saveexcludedapplicationlist(string[] applicationlist) { mexcludedapplicationlist = applicationlist; string combined = ""; (int i=0; i<mexcludedapplicationlist.length; i++){ combined = combined + mexcludedapplicationlist[i] + ";"; } mpref.edit().putstring(pref_excluded_application_list, combined).commit(); }
turns out had nothing way serializing this, "google+ messaging" app beging distributed same package g+.
Comments
Post a Comment