Skip to content

Android Studio plugin for debugging android database and preference

License

Notifications You must be signed in to change notification settings

godwinjk/Debugger-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Database Debugger

Database Debugger is a debug bridge for Android applications. When enabled, developers have access to database of application within android studio. Without any support of other third party tools.

Set-up

In Android Studio

  1. File-> Settings-> Plugins
  2. Click Browse repositories
  3. Search Android Database Debugger
  4. Install and restart Android Studio

Or you can find the file from https://plugins.jetbrains.com/plugin/10766-database-debugger

Now you will see a tool window on right tool panel called Debugger.

In application

  1. Download the latest JARs from Release folder and copy to lib folder of your app (create one if you dont have)

implementation fileTree(dir: 'lib', include: ['*.aar', '*.jar'], exclude: [])

Maven and Jcenter is on the way

Using

Integration of Database Debugger is pretty straight forwart. There is a simple initialization step which occurs in your Application class:

public class MyApplication extends Application {
  public void onCreate() {
    super.onCreate();
    Debugger.initialize(this); 
    }
}

Also ensure that your MyApplication Java class is registered in your AndroidManifest.xml file

<manifest
        xmlns:android="http://schemas.android.com/apk/res/android"
        ...>
        <application
                android:name="MyApplication"
                ...>
         </application>
</manifest>

Debugger-plugin

About

Android Studio plugin for debugging android database and preference

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •