Update API

This commit is contained in:
mar-v-in 2015-04-10 20:57:58 +02:00
parent a181a0f3b9
commit 562e231775
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
package com.google.android.gms.checkin.internal;
interface ICheckinService {
String getDeviceDataVersionInfo();
}

View File

@ -47,7 +47,7 @@ public class LogEvent extends AutoSafeParcelable {
return "LogEvent{" +
"eventTime=" + new Date(eventTime) +
", tag='" + tag + '\'' +
", data='" + new String(data) + '\'' +
", data=" + (data == null ? "null" : ('\'' + new String(data) + '\'')) +
'}';
}