From 24ab1066803718613f80907636940e72a6cc9d50 Mon Sep 17 00:00:00 2001 From: Alexander Zhirkevich Date: Fri, 31 Jan 2025 16:32:21 +0300 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56c3e46..53183f6 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Compose Multiplatform Adobe After Effects Bodymovin (Lottie) animations renderin | `compottie⁠-⁠dot` | Contains [dotLottie](https://dotlottie.io/) and ZIP animation spec. For Compottie 2.x only | | `compottie⁠-⁠network` | Contains `Url` animation spec and asset/font managers (with [Ktor3](https://ktor.io/) and local cache with [Okio](https://square.github.io/okio/)). Allows loading animations and assets from web. For Compottie 2.x only | | `compottie⁠-⁠network-core` | Contains base HttpClient-free implementations for `network` module. Allows to specify custom HTTP client (Ktor3 or any other). | -| `compottie⁠-⁠resources` | Contains asset and font managers powered by official Compose resources. For Compottie 2.x only | +| `compottie⁠-⁠resources` | Contains asset and font managers powered by official Compose resources. For Compottie 2.x only.
WARNING: this module DOES NOT help you to load animations from resources. It is only usefull for loading FONTS and IMAGES. Adding this can cause binary incompatibilies between Compose versions | [![Maven Central](https://img.shields.io/maven-central/v/io.github.alexzhirkevich/compottie)](https://central.sonatype.com/artifact/io.github.alexzhirkevich/compottie) @@ -34,6 +34,8 @@ dependencies { implementation("io.github.alexzhirkevich:compottie:") implementation("io.github.alexzhirkevich:compottie-dot:") implementation("io.github.alexzhirkevich:compottie-network:") + + // This module can cause binary incompatibilities. Please reead its description first implementation("io.github.alexzhirkevich:compottie-resources:") } ```