컴퓨터공부/Android

Stetho로 Sqlite db 들여다 보기

achivenKakao 2020. 9. 7. 10:10
Stetho.initializeWithDefaults(this);

Stetho로 안드로이드 내부의 sqlite db를 들여다 볼 수 있다. (SharedPreference값, 네트워크상태 등의 정보고 볼 수 있다.)

1. gradle에 dependencies 에 아래를 추가

   implementation 'com.facebook.stetho:stetho:1.5.1'

 

2. MainActivity의 onCreate()에 초기화 코드 추가

@Override
protected void onCreate(Bundle savedInstanceState) {
	..
    
	Stetho.initializeWithDefaults(this);
    ..
    
}

   

3. 크롬의 chrome://inspect 페이지에 가서 확인하기 

SQLite table 확인

 

4. 끝.

 

더 자세한 내용은 아래 출처에 가서 확인해 보시면 됩니다.

 

출처 : facebook.github.io/stetho/

         https://gun0912.tistory.com/69