GCM and Special characters
问题 I recently changed my c2dm push aaplucation to GCM. A new problem appeared. Its now receiving '?' instead of 'ö','ï', ... My server logs correct Strings, but the application receives '?' insteads. Do you think it could have something to do with GCM? My code is the following: public static void displayMessage(Context context, Intent intent) { Bundle extras = intent.getExtras(); if (extras != null) { String message = (String) extras.get("message"); Log.v("extras", extras.toString()); Util