1313* See all the data in the shared preferences used in your application.
1414* Run any sql query on the given database to update and delete your data.
1515* Directly edit the database values.
16+ * Directly edit shared preferences.
17+ * Delete database rows and shared preferences.
1618* Search in your data.
1719* Sort data.
20+ * Download database.
1821
1922### Check out another awesome library for fast and simple networking in Android.
2023* [ Fast Android Networking Library] ( https://github.com/amitshekhariitbhu/Fast-Android-Networking )
2124
2225### Using Android Debug Database Library in your application
2326Add this to your app's build.gradle
2427``` groovy
25- debugCompile 'com.amitshekhar.android:debug-db:0.5 .0'
28+ debugCompile 'com.amitshekhar.android:debug-db:1.0 .0'
2629```
2730
2831Use ` debugCompile ` so that it will only compile in your debug build and not in your release apk.
@@ -53,8 +56,12 @@ debug {
5356
5457You will see something like this :
5558
59+ ### Seeing values
5660<img src=https://raw.githubusercontent.com/amitshekhariitbhu/Android-Debug-Database/master/assets/debugdb.png >
5761
62+ ### Editing values
63+ <img src=https://raw.githubusercontent.com/amitshekhariitbhu/Android-Debug-Database/master/assets/debugdb_edit.png >
64+
5865### Working with emulator
5966- Android Default Emulator: run ` adb forward tcp:8080 tcp:8080 ` and open http://localhost:8080
6067- Genymotion Emulator: Enable bridge from configure virtual device (option available in genymotion)
@@ -81,9 +88,10 @@ public static void showDebugDBAddressLogToast(Context context) {
8188
8289### TODO
8390* Simplify emulator issue [ Issue Link] ( https://github.com/amitshekhariitbhu/Android-Debug-Database/issues/6 )
84- * Edit shared preferences directly from the browser. At present, it is only possible to edit database values.
8591* And of course many more features and bug fixes.
8692
93+ ###[ Check out Mindorks awesome open source projects here] ( https://mindorks.com/open-source-projects )
94+
8795### Contact - Let's become friends
8896- [ Twitter] ( https://twitter.com/amitiitbhu )
8997- [ Github] ( https://github.com/amitshekhariitbhu )
0 commit comments