diff --git a/build.gradle b/build.gradle index ecb2a809a..dd8f86463 100644 --- a/build.gradle +++ b/build.gradle @@ -46,6 +46,11 @@ android { debug { testCoverageEnabled true } + // https://code.google.com/p/android/issues/detail?id=123771 + debuggable.initWith(buildTypes.debug) + debuggable { + testCoverageEnabled false + } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.pro' diff --git a/src/googleplay/java/com/todoroo/astrid/gtasks/api/GtasksInvoker.java b/src/googleplay/java/com/todoroo/astrid/gtasks/api/GtasksInvoker.java index 4d197ecfe..09ec23186 100644 --- a/src/googleplay/java/com/todoroo/astrid/gtasks/api/GtasksInvoker.java +++ b/src/googleplay/java/com/todoroo/astrid/gtasks/api/GtasksInvoker.java @@ -97,6 +97,7 @@ public class GtasksInvoker { } public Task createGtask(String listId, Task task, String parent, String priorSiblingId) throws IOException { + Timber.d("createGtask: %s", prettyPrint(task)); return execute(service .tasks() .insert(listId, task) @@ -105,6 +106,7 @@ public class GtasksInvoker { } public void updateGtask(String listId, Task task) throws IOException { + Timber.d("updateGtask: %s", prettyPrint(task)); execute(service .tasks() .update(listId, task.getId(), task));