Skip to content

Commit fb82933

Browse files
author
krishna
committed
change project name
1 parent cbfceb2 commit fb82933

84 files changed

Lines changed: 176 additions & 104 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.idea/gradle.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Android-Debug-Tools
2+
[![](https://jitpack.io/v/kk121/Android-Debug-Tools.svg)](https://jitpack.io/#kk121/Android-Debug-Tools)
3+
<br>
4+
### Android library for debugging, Sqlite Databases, SharedPreferences and all types of files stored in internal storage directory, right from the app.
5+
6+
## What it does?
7+
* View all Sqlite database with version.
8+
* View all Tables and it's contents in a Database.
9+
* View all SharedPreferences.
10+
* View all files(image, pdf, json, txt etc) stored in internal directory of the app.
11+
12+
## Download
13+
### Gradle:
14+
```sh
15+
repositories {
16+
mavenCentral()
17+
maven { url 'https://jitpack.io' }
18+
}
19+
20+
dependencies {
21+
//include in debug build only
22+
debugCompile 'com.github.kk121:Android-Debug-Tools:1.0'
23+
}
24+
25+
```
26+
### or Maven:
27+
```sh
28+
<dependency>
29+
<groupId>com.github.kk121</groupId>
30+
<artifactId>Android-Debug-Tools</artifactId>
31+
<version>1.0</version>
32+
</dependency>
33+
```
34+
35+
## Using Android-Debug-Tools in your Application?
36+
```sh
37+
//start the ActivityDebugTools activity from your activity, that's it
38+
startActivity(new Intent(this, ActivityDevTools.class));
39+
```
40+
41+
## Screenshots:
42+
<img src="https://github.com/kk121/Android-Debug-Tools/blob/master/screenshots/drawer.png" width="350"> &nbsp; &nbsp; &nbsp; &nbsp; <img src="https://github.com/kk121/Android-Debug-Tools/blob/master/screenshots/database%20list.png" width="350">
43+
44+
### Tables
45+
<img src="https://github.com/kk121/Android-Debug-Tools/blob/master/screenshots/table%20list.png" width="350"> &nbsp; &nbsp; &nbsp; &nbsp; <img src="https://github.com/kk121/Android-Debug-Tools/blob/master/screenshots/table%20content.png" width="350">
46+
47+
### SharedPreference
48+
<img src="https://github.com/kk121/Android-Debug-Tools/blob/master/screenshots/sharedPreference.png" width="350">
49+
50+
## Upcoming Features:
51+
* Edit, delete database tables
52+
* Edit sharedPreferences
53+
* Delete, add, or create files in internal storage directory
54+
55+
## Find this library useful ? :heart:
56+
* Support it by clicking the :star:
57+
58+
## License
59+
```
60+
Copyright (C) 2018 Krishna Kumar
61+
62+
Licensed under the Apache License, Version 2.0 (the "License");
63+
you may not use this file except in compliance with the License.
64+
You may obtain a copy of the License at
65+
66+
http://www.apache.org/licenses/LICENSE-2.0
67+
68+
Unless required by applicable law or agreed to in writing, software
69+
distributed under the License is distributed on an "AS IS" BASIS,
70+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
71+
See the License for the specific language governing permissions and
72+
limitations under the License.
73+
```

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ dependencies {
2525
testImplementation 'junit:junit:4.12'
2626
androidTestImplementation 'com.android.support.test:runner:1.0.1'
2727
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
28-
implementation project(':devtools')
28+
implementation project(':debug_tools')
2929
}

app/src/androidTest/java/com/krishna/devtoolsdemo/ExampleInstrumentedTest.java renamed to app/src/androidTest/java/com/krishna/debug_tools_demo/ExampleInstrumentedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.krishna.devtoolsdemo;
1+
package com.krishna.debug_tools_demo;
22

33
import android.content.Context;
44
import android.support.test.InstrumentationRegistry;

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.krishna.devtoolsdemo">
3+
package="com.krishna.debug_tools_demo">
44

55
<application
66
android:allowBackup="true"
@@ -9,7 +9,7 @@
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
1111
android:theme="@style/AppTheme">
12-
<activity android:name=".MainActivity">
12+
<activity android:name="com.krishna.debug_tools_demo.MainActivity">
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />
1515

app/src/main/java/com/krishna/devtoolsdemo/DBHelper.java renamed to app/src/main/java/com/krishna/debug_tools_demo/DBHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.krishna.devtoolsdemo;
1+
package com.krishna.debug_tools_demo;
22

33
import android.content.ContentValues;
44
import android.content.Context;

app/src/main/java/com/krishna/devtoolsdemo/MainActivity.java renamed to app/src/main/java/com/krishna/debug_tools_demo/MainActivity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package com.krishna.devtoolsdemo;
1+
package com.krishna.debug_tools_demo;
22

33
import android.content.Intent;
44
import android.os.Bundle;
55
import android.support.v7.app.AppCompatActivity;
66

7-
import com.krishna.devtools.activity.ActivityDevTools;
7+
import com.krishna.debug_tools.activity.ActivityDebugTools;
88

99
public class MainActivity extends AppCompatActivity {
1010

@@ -15,6 +15,6 @@ protected void onCreate(Bundle savedInstanceState) {
1515
//create a dummy db
1616
DBHelper.getInstance(this).getReadableDatabase();
1717

18-
startActivity(new Intent(this, ActivityDevTools.class));
18+
startActivity(new Intent(this, ActivityDebugTools.class));
1919
}
2020
}

app/src/main/res/layout/activity_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7-
tools:context="com.krishna.devtoolsdemo.MainActivity">
7+
tools:context="com.krishna.debug_tools_demo.MainActivity">
88

99
<TextView
1010
android:layout_width="wrap_content"

0 commit comments

Comments
 (0)