Updated FaviconFinder to version 1.0.0
This commit is contained in:
parent
56467c0ea0
commit
c0f5bed3d5
|
@ -36,6 +36,11 @@ ext {
|
|||
// embedBitcodeValue = "bitcode" // for release binaries
|
||||
|
||||
|
||||
/* Java */
|
||||
|
||||
faviconFinderVersion = "1.0.0"
|
||||
|
||||
|
||||
/* Android */
|
||||
|
||||
androidCompileSdkVersion = 28
|
||||
|
|
|
@ -62,7 +62,7 @@ kotlin {
|
|||
api "net.dankito.text.extraction:text-extractor-common:$textExtractorVersion"
|
||||
api "net.dankito.text.extraction:text-info-extractor:$textInfoExtractorVersion"
|
||||
|
||||
implementation "net.dankito.utils:favicon-finder:1.0.0-SNAPSHOT"
|
||||
implementation "net.dankito.utils:favicon-finder:$faviconFinderVersion"
|
||||
|
||||
implementation "org.jsoup:jsoup:1.13.1"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ package net.dankito.banking.util
|
|||
|
||||
import net.dankito.utils.favicon.FaviconComparator
|
||||
import net.dankito.utils.favicon.FaviconFinder
|
||||
import net.dankito.utils.web.client.OkHttpWebClient
|
||||
import net.dankito.utils.favicon.web.UrlConnectionWebClient
|
||||
import org.jsoup.Jsoup
|
||||
import org.jsoup.nodes.Document
|
||||
import org.slf4j.LoggerFactory
|
||||
|
@ -30,7 +30,7 @@ open class BankIconFinder : IBankIconFinder {
|
|||
}
|
||||
|
||||
|
||||
protected val webClient = OkHttpWebClient()
|
||||
protected val webClient = UrlConnectionWebClient()
|
||||
|
||||
protected val faviconFinder = FaviconFinder(webClient)
|
||||
|
||||
|
|
Loading…
Reference in New Issue