mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-22 21:25:46 +03:00
Actually use latest Glide version. Minor doc fix
This commit is contained in:
parent
1470e9d5ca
commit
ca30fd6088
2 changed files with 5 additions and 5 deletions
|
@ -170,9 +170,10 @@ dependencies {
|
||||||
compile "uy.kohesive.injekt:injekt-core:1.16.1"
|
compile "uy.kohesive.injekt:injekt-core:1.16.1"
|
||||||
|
|
||||||
// Image library
|
// Image library
|
||||||
compile 'com.github.bumptech.glide:glide:4.1.1'
|
final glide_version = '4.2.0'
|
||||||
compile 'com.github.bumptech.glide:okhttp3-integration:4.1.1'
|
compile "com.github.bumptech.glide:glide:$glide_version"
|
||||||
kapt 'com.github.bumptech.glide:compiler:4.1.1'
|
compile "com.github.bumptech.glide:okhttp3-integration:$glide_version"
|
||||||
|
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
||||||
|
|
||||||
// Transformations
|
// Transformations
|
||||||
compile 'jp.wasabeef:glide-transformations:3.0.1'
|
compile 'jp.wasabeef:glide-transformations:3.0.1'
|
||||||
|
|
|
@ -355,8 +355,7 @@ class MangaInfoController : NucleusController<MangaInfoPresenter>(),
|
||||||
* Retrieves the bitmap of the shortcut with the requested shape and calls [createShortcut] when
|
* Retrieves the bitmap of the shortcut with the requested shape and calls [createShortcut] when
|
||||||
* the resource is available.
|
* the resource is available.
|
||||||
*
|
*
|
||||||
* @param i The shape index to apply. No transformation is performed if the parameter is not
|
* @param i The shape index to apply. Defaults to circle crop transformation.
|
||||||
* provided.
|
|
||||||
*/
|
*/
|
||||||
private fun createShortcutForShape(i: Int = 0) {
|
private fun createShortcutForShape(i: Int = 0) {
|
||||||
GlideApp.with(activity)
|
GlideApp.with(activity)
|
||||||
|
|
Loading…
Reference in a new issue