Skip to content

Commit 7e609ed

Browse files
Update README.md
1 parent 804652f commit 7e609ed

1 file changed

Lines changed: 19 additions & 22 deletions

File tree

README.md

Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,52 +4,49 @@
44

55
### Android Debug Database allows you to view databases and shared preferences directly in your browser in a very simple way.
66

7-
### How Android Debug Database helps?
8-
* When it comes to debugging database of an android application, it is very difficult to see what's happening inside database, it's make it too simple.
9-
* You can see all the data of shared preferences used in your application.
10-
* You can check the current value of any of the shared preferences.
11-
* You can run any sql query on the given database to update and delete your data.
12-
* You can directly edit the data of databases.
13-
* You can do search in your data.
14-
* You can sort data.
15-
* So this is a very simple tool to see your complete data in your browser.
16-
* Debugging Android Database was never easier than this.
7+
### What can Android Debug Database do?
8+
* See all the databases.
9+
* See all the data in the shared preferences used in your application.
10+
* Run any sql query on the given database to update and delete your data.
11+
* Directly edit the database values.
12+
* Search in your data.
13+
* Sort data.
1714

1815

1916
### Using Android Debug Database Library in your application
20-
Add this in your build.gradle
17+
Add this to your app's build.gradle
2118
```groovy
2219
debugCompile 'com.amitshekhar.android:debug-db:0.2.0'
2320
```
2421

25-
Use `debugCompile` so that it will only compile in your debug build not in release apk.
22+
Use `debugCompile` so that it will only compile in your debug build and not in your release apk.
2623

27-
That’s all, just start the application, you will be able to see logs in the logcat like below :
24+
That’s all, just start the application, you will see in the logcat an entry like follows :
2825

2926
* D/DebugDB: Open http://XXX.XXX.X.XXX:8080 in your browser
3027

31-
* You can always get the address log from your code by calling the method `DebugDB.getAddressLog();`
28+
* You can also always get the debug address url from your code by calling the method `DebugDB.getAddressLog();`
3229

3330
Now open the provided link in your browser.
3431

35-
Important : Your Android phone and laptop should be connected to the same Wifi.
32+
Important : Your Android phone and laptop should be connected to the same Wifi Network.
3633

37-
You will be able to see like below.
34+
You will see something like this :
3835

3936
<img src=https://raw.githubusercontent.com/amitshekhariitbhu/Android-Debug-Database/master/assets/debugdb.png >
4037

4138

42-
### Found this project useful :heart:
43-
* Support by clicking the :star: button on the upper right of this page. :v:
39+
### Find this project useful ? :heart:
40+
* Support it clicking the :star: button on the upper right of this page. :v:
4441

4542
### TODO
46-
* Edit shared preferences directly from your browser, at present, it is supported for database through query.
47-
* And of course many many features and bug fixes
43+
* Edit shared preferences directly from the browser. At present, it is only possible to edit database values.
44+
* And of course many more features and bug fixes
4845

4946
### Check out another awesome library for fast and simple networking in Android.
5047
* [Fast Android Networking Library](https://github.com/amitshekhariitbhu/Fast-Android-Networking)
5148

52-
### Contact - Let's become friend
49+
### Contact - Let's become friends
5350
- [Twitter](https://twitter.com/amitiitbhu)
5451
- [Github](https://github.com/amitshekhariitbhu)
5552
- [Medium](https://medium.com/@amitshekhar)
@@ -74,4 +71,4 @@ You will be able to see like below.
7471
```
7572

7673
### Contributing to Android Debug Database
77-
Just make pull request. You are in!
74+
Just make pull request. You're in!

0 commit comments

Comments
 (0)