Include username in feeback link to help diagnose future issues. (#672)

This commit is contained in:
dosiecki 2015-03-12 18:35:26 -07:00
parent 0f6fecfa31
commit 0fd6322659

View file

@ -81,6 +81,7 @@ public class PrefsUtils {
s.append("%0Aapp version: ").append(getVersion(context));
s.append("%0Aandroid version: ").append(Build.VERSION.RELEASE);
s.append("%0Adevice: ").append(Build.MANUFACTURER + "+" + Build.MODEL + "+(" + Build.BOARD + ")");
s.append("%0Ausername: ").append(getUserDetails(context).username);
s.append("%0Amemory: ").append(NBSyncService.isMemoryLow() ? "low" : "normal");
s.append("%0Aspeed: ").append(NBSyncService.getSpeedInfo());
s.append("%0Apremium: ");