protostore
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sapuseven.compose</groupId> <artifactId>protostore</artifactId> <version>0.2.0</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>com.sapuseven.compose</groupId> <artifactId>protostore</artifactId> <version>0.2.0</version> <packaging>aar</packaging> <name>Compose ProtoStore</name> <description>A compose library for storing typed objects with Proto DataStore and building a matching UI.</description> <url>https://github.com/SapuSeven/compose-protostore</url> <inceptionYear>2025</inceptionYear> <licenses> <license> <name>The MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>sapuseven</id> <name>SapuSeven</name> <url>https://sapuseven.com</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/SapuSeven/compose-protostore.git</connection> <developerConnection>scm:git:ssh://git@github.com/SapuSeven/compose-protostore.git</developerConnection> <url>https://github.com/SapuSeven/compose-protostore</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.1.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.core</groupId> <artifactId>core-ktx</artifactId> <version>1.16.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.ui</groupId> <artifactId>ui</artifactId> <version>1.8.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.material3</groupId> <artifactId>material3</artifactId> <version>1.3.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.datastore</groupId> <artifactId>datastore</artifactId> <version>1.1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-javalite</artifactId> <version>4.31.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.ajalt.colormath</groupId> <artifactId>colormath</artifactId> <version>3.6.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.lifecycle</groupId> <artifactId>lifecycle-viewmodel-android</artifactId> <version>2.9.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.compose.ui</groupId> <artifactId>ui-tooling-preview-android</artifactId> <version>1.8.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>