amitshekhariitbhu / Android-Debug-Database

A library for debugging android databases and shared preferences - Make Debugging Great Again
https://outcomeschool.com
Apache License 2.0
8.41k stars 870 forks source link

UI interface broken with build tools 3.5.2 #175

Open aolivafaura opened 4 years ago

aolivafaura commented 4 years ago

Update build tools to the latest version 3.5.2 break library functionality. Downgrading to 3.4.0 solves the problem.

Screenshot from 2019-11-28 15-45-12

When some table is clicked, "Query executed successfully" message appears on the bottom of the screen, but no information is shown.

v1ad3v commented 4 years ago

Faced the same problem, but after enabling Proguard (build tools 3.6.0-beta05). Solved by adding rules:

-keep class com.amitshekhar.DebugDB**
-keep class com.amitshekhar.model.** { *; }