compose-image
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.korilin.akit.glide</groupId> <artifactId>compose-image</artifactId> <version>1.0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.korilin.akit.glide</groupId> <artifactId>compose-image</artifactId> <version>1.0.5</version> <packaging>aar</packaging> <name>Akit Glide Compose Image</name> <description>A Compose Image library base on Glide.</description> <url>https://github.com/korilin/akit</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://github.com/korilin/akit/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>korilin</id> <name>Kori</name> <email>korilin.dev@gmail.com</email> <url>https://github.com/korilin</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/korilin/akit.git</connection> <developerConnection>scm:git:ssh://git@github.com/korilin/akit.git</developerConnection> <url>https://github.com/korilin/akit</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>androidx.compose</groupId> <artifactId>compose-bom</artifactId> <version>2025.01.00</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.23</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>1.13.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.appcompat</groupId> <artifactId>appcompat</artifactId> <version>1.7.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.ui</groupId> <artifactId>ui</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.foundation</groupId> <artifactId>foundation</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.ui</groupId> <artifactId>ui-graphics</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.ui</groupId> <artifactId>ui-tooling</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>glide</artifactId> <version>4.16.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>okhttp3-integration</artifactId> <version>4.16.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.penfeizhou.android.animation</groupId> <artifactId>glide-plugin</artifactId> <version>2.24.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>gifencoder-integration</artifactId> <version>4.16.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.penfeizhou.android.animation</groupId> <artifactId>awebp</artifactId> <version>3.0.1</version> <scope>runtime</scope> </dependency> </dependencies> </project>