diff --git a/README.md b/README.md index 590ef9a8..b4a68a08 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ repositories { Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.9-SNAPSHOT" + implementation "com.github.skydoves:landscapist-glide:2.2.10-SNAPSHOT" } ``` @@ -89,7 +89,7 @@ allprojects { Next, add the dependency below to your **module**'s `build.gradle` file: ```gradle dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.8" + implementation "com.github.skydoves:landscapist-glide:2.2.9" } ``` @@ -302,7 +302,7 @@ dependencies { implementation "com.github.skydoves:landscapist-fresco:$version" } ``` -> **Note**: `Landscapist-Fresco` includes version `2.6.0` of Fresco. So please make sure your project is using the same Fresco version or exclude the Fresco dependency to adapt yours. Also, please make sure the Jetpack Compose version on the [release page](https://github.com/skydoves/Landscapist/releases). +> **Note**: `Landscapist-Fresco` includes version `3.1.0` of Fresco. So please make sure your project is using the same Fresco version or exclude the Fresco dependency to adapt yours. Also, please make sure the Jetpack Compose version on the [release page](https://github.com/skydoves/Landscapist/releases). ### Setup To get started, you should set up `Fresco` with [ImagePipelineConfig](https://frescolib.org/docs/configure-image-pipeline.html) in your `Application` class. Generally, it's recommended initializing with `OkHttpImagePipelineConfigFactory`. Also, you can customize caching, networking, and thread pool strategies with your own `ImagePipelineConfig`. For more details, you can check out [Using Other Network Layers](https://frescolib.org/docs/using-other-network-layers.html#using-okhttp). diff --git a/docs/glide/overview.md b/docs/glide/overview.md index f541e57d..2dca391a 100644 --- a/docs/glide/overview.md +++ b/docs/glide/overview.md @@ -23,7 +23,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```Groovy dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.8" + implementation "com.github.skydoves:landscapist-glide:2.2.9" } ``` @@ -31,7 +31,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("com.github.skydoves:landscapist-glide:2.2.8") + implementation("com.github.skydoves:landscapist-glide:2.2.9") } ``` diff --git a/docs/snapshot.md b/docs/snapshot.md index 062b9036..cf2f7105 100644 --- a/docs/snapshot.md +++ b/docs/snapshot.md @@ -32,7 +32,7 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```Groovy dependencies { - implementation "com.github.skydoves:landscapist-glide:2.2.9-SNAPSHOT" + implementation "com.github.skydoves:landscapist-glide:2.2.10-SNAPSHOT" } ``` @@ -40,6 +40,6 @@ Next, add the dependency below to your **module**'s `build.gradle` file: ```kotlin dependencies { - implementation("com.github.skydoves:landscapist-glide:2.2.9-SNAPSHOT") + implementation("com.github.skydoves:landscapist-glide:2.2.10-SNAPSHOT") } ```