redwarp / gifdecoder

An implementation of a gif decoder written 100% in Kotlin, plus an associated Drawable for Android
Apache License 2.0
47 stars 6 forks source link

Remove explicit dependency on Kotlin stdlib #4

Closed cortinico closed 3 years ago

cortinico commented 3 years ago

Explicit dependencies on kotlin-stdlib artifact are unnecessary (unless you want to specifically target a variant of the standard library).

The dependency is added automatically as you add the kotlin("jvm") plugin. Ref: https://kotlinlang.org/docs/gradle.html#dependency-on-the-standard-library

redwarp commented 3 years ago

Good to know!