Skip to content

Commit 1aa1a34

Browse files
Merge branch 'master' of https://github.com/amitshekhariitbhu/Android-Debug-Database into Development
2 parents 32828bb + c19d1a5 commit 1aa1a34

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@
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
2326
Add 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

2831
Use `debugCompile` so that it will only compile in your debug build and not in your release apk.
@@ -53,8 +56,12 @@ debug {
5356

5457
You 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)

assets/debugdb.png

310 KB
Loading

assets/debugdb_edit.png

376 KB
Loading

debug-db/debug-db-upload.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def siteUrl = 'https://github.com/amitshekhariitbhu/Android-Debug-Database'
2424
def gitUrl = 'https://github.com/amitshekhariitbhu/Android-Debug-Database.git'
2525

2626
group = "com.amitshekhar.android"
27-
version = '0.6.0-RC1'
27+
version = '1.0.0'
2828

2929
install {
3030
repositories.mavenInstaller {

0 commit comments

Comments
 (0)