Android-DebugPort icon indicating copy to clipboard operation
Android-DebugPort copied to clipboard

A Read-Eval-Print-Loop server for Android and SQLite

Results 8 Android-DebugPort issues
Sort by recently updated
recently updated
newest added

How to get DB from different path From SDCard for example /sdcard/folder/test.db

I've created an empty app, enabled debugport and then run from Android Studio on a real device. ``` 04-15 19:51:42.065 8126-8132/com.example.live.myapplication I/zygote64: After code cache collection, code=61KB, data=51KB Increasing code...

Could you provide some tips on how we can reach our objects? I guess we only have the app object. Some scenarios that come to mind are to derive my...

Currently DebugPort uses MySQL-ish queries to get metadata about the current database or its tables: * `SHOW CREATE TABLE` * `SHOW DATABASES` * `SHOW TABLES` * `EXIT;` I think it...

enhancement

``` Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Intent.getAction()' on a null object reference at jwf.debugport.DebugPortService.onStartCommand(DebugPortService.java:142) at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3327) at android.app.ActivityThread.-wrap21(ActivityThread.java)  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1583)  at android.os.Handler.dispatchMessage(Handler.java:102)  at android.os.Looper.loop(Looper.java:154)  at android.app.ActivityThread.main(ActivityThread.java:6121) ...

bug

It would be nice to be able to use DebugPort to inspect and modify SharedPreferences within the app without requiring a bunch of beanshell commands to access them. Would it...

enhancement
question

It would be nice to be able to navigate the app's directory structure and inspect things like cached files, their sizes, and their mod dates..

enhancement