compose
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>compose</artifactId> <version>1.0.0-beta01</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.bumptech.glide</groupId> <artifactId>compose</artifactId> <version>1.0.0-beta01</version> <packaging>aar</packaging> <name>Glide Compose Integration</name> <description>An integration library to integrate with Jetpack Compose</description> <url>https://github.com/bumptech/glide</url> <licenses> <license> <name>Simplified BSD License</name> <url>http://www.opensource.org/licenses/bsd-license</url> <distribution>repo</distribution> </license> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>sjudd</id> <name>Sam Judd</name> <email>judds@google.com</email> </developer> </developers> <scm> <connection>scm:git@github.com:bumptech/glide.git</connection> <developerConnection>scm:git@github.com:bumptech/glide.git</developerConnection> <url>https://github.com/bumptech/glide</url> </scm> <dependencies> <dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>glide</artifactId> <version>5.0.0-rc01</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>ktx</artifactId> <version>1.0.0-beta01</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.bumptech.glide</groupId> <artifactId>recyclerview-integration</artifactId> <version>5.0.0-rc01</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.compose.foundation</groupId> <artifactId>foundation</artifactId> <version>1.5.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.compose.ui</groupId> <artifactId>ui</artifactId> <version>1.5.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>1.12.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.8.22</version> <scope>compile</scope> </dependency> </dependencies> </project>