removing Stetho

This commit is contained in:
tibbi 2018-11-05 13:51:13 +01:00
parent dd259a0bbe
commit e39b11209e
3 changed files with 1 additions and 7 deletions

View File

@ -43,7 +43,6 @@ android {
dependencies {
implementation 'com.simplemobiletools:commons:5.3.11'
implementation 'joda-time:joda-time:2.9.9'
implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.4'
}

View File

@ -1,16 +1,11 @@
package com.simplemobiletools.contacts.pro
import android.app.Application
import com.facebook.stetho.Stetho
import com.simplemobiletools.commons.extensions.checkUseEnglish
class App : Application() {
override fun onCreate() {
super.onCreate()
if (BuildConfig.DEBUG) {
Stetho.initializeWithDefaults(this)
}
checkUseEnglish()
}
}

View File

@ -478,7 +478,7 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
}
private fun launchAbout() {
val licenses = LICENSE_JODA or LICENSE_GLIDE or LICENSE_GSON or LICENSE_STETHO
val licenses = LICENSE_JODA or LICENSE_GLIDE or LICENSE_GSON
val faqItems = arrayListOf(
FAQItem(R.string.faq_1_title, R.string.faq_1_text),