removing stetho library

This commit is contained in:
tibbi 2021-11-08 23:21:46 +01:00
parent ad080e4daa
commit 5b57bd31e7
3 changed files with 1 additions and 6 deletions

View File

@ -57,7 +57,6 @@ android {
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:930b72719d'
implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
}

View File

@ -1,15 +1,11 @@
package com.simplemobiletools.applauncher
import androidx.multidex.MultiDexApplication
import com.facebook.stetho.Stetho
import com.simplemobiletools.commons.extensions.checkUseEnglish
class App : MultiDexApplication() {
override fun onCreate() {
super.onCreate()
if (BuildConfig.DEBUG) {
Stetho.initializeWithDefaults(this)
}
checkUseEnglish()
}
}

View File

@ -107,7 +107,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
}
private fun launchAbout() {
val licenses = LICENSE_STETHO
val licenses = 0
val faqItems = arrayListOf(
FAQItem(R.string.faq_2_title_commons, R.string.faq_2_text_commons),