Add Stetho to debug application (#18)

This commit is contained in:
Kirill Kamakin
2021-11-28 16:32:05 +03:00
committed by GitHub
parent a1b81eca64
commit cc2fb77269
3 changed files with 15 additions and 2 deletions

View File

@@ -157,4 +157,9 @@ dependencies {
// https://mvnrepository.com/artifact/com.google.truth/truth
testImplementation "com.google.truth:truth:1.1.3"
// https://github.com/facebook/stetho/releases
def stetho_version = "1.6.0"
implementation "com.facebook.stetho:stetho:$stetho_version"
implementation "com.facebook.stetho:stetho-okhttp3:$stetho_version"
}