1. 程式人生 > >Android 使用google瀏覽器檢視手機資料庫的方法

Android 使用google瀏覽器檢視手機資料庫的方法

記錄一個使用手機檢視資料庫的快捷方法:

1、在應用App的build.gradle中新增如下程式碼:

// 檢視資料庫
implementation 'com.facebook.stetho:stetho:1.5.0'

2、在應用App的application類的oncreate方法中新增如下程式碼:

Stetho.initializeWithDefaults(this);

3、在google瀏覽器中開啟連結如下:

chrome://inspect/#devices

4、點選inspect就可以檢視資料庫了