Skip to content

Commit

Permalink
Merge pull request #345 from cyb3rko/svg-support
Browse files Browse the repository at this point in the history
Add SVG support
  • Loading branch information
jmattheis authored Apr 26, 2024
2 parents d5903b2 + 4cc8226 commit a83cd18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ if (project.hasProperty('sign')) {
}

dependencies {
def coil_version = "2.6.0"
def markwon_version = "4.6.2"
implementation project(':client')
implementation 'androidx.appcompat:appcompat:1.6.1'
Expand All @@ -77,7 +78,8 @@ dependencies {
implementation 'androidx.preference:preference-ktx:1.2.1'

implementation 'com.github.cyb3rko:QuickPermissions-Kotlin:1.1.3'
implementation 'io.coil-kt:coil:2.6.0'
implementation "io.coil-kt:coil:$coil_version"
implementation "io.coil-kt:coil-svg:$coil_version"
implementation "io.noties.markwon:core:$markwon_version"
implementation "io.noties.markwon:image-coil:$markwon_version"
implementation "io.noties.markwon:image:$markwon_version"
Expand Down
4 changes: 4 additions & 0 deletions app/src/main/kotlin/com/github/gotify/CoilHandler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import android.graphics.BitmapFactory
import android.graphics.drawable.BitmapDrawable
import coil.ImageLoader
import coil.annotation.ExperimentalCoilApi
import coil.decode.SvgDecoder
import coil.disk.DiskCache
import coil.executeBlocking
import coil.request.ImageRequest
Expand All @@ -28,6 +29,9 @@ internal class CoilHandler(private val context: Context, private val settings: S
.directory(context.cacheDir.resolve("coil-cache"))
.build()
}
.components {
add(SvgDecoder.Factory())
}
.build()
}

Expand Down

0 comments on commit a83cd18

Please sign in to comment.