rxpm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.dmdev.rxpm</groupId> <artifactId>rxpm</artifactId> <version>2.1.2</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 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>me.dmdev.rxpm</groupId> <artifactId>rxpm</artifactId> <version>2.1.2</version> <packaging>aar</packaging> <name>rxpm</name> <description>Reactive implementation of Presentation Model pattern in Android</description> <url>https://github.com/dmdevgo/RxPM</url> <licenses> <license> <name>MIT</name> <url>https://github.com/dmdevgo/RxPM/blob/develop/LICENSE</url> </license> </licenses> <developers> <developer> <id>dmdev</id> <name>Dmitriy Gorbunov</name> <email>dmitriy.goto@gmail.com</email> </developer> <developer> <id>jeevuz</id> <name>Vasili Chyrvon</name> <email>vasili.chyrvon@gmail.com</email> </developer> </developers> <scm> <connection>scm:git@github.com:dmdevgo/RxPM.git</connection> <developerConnection>scm:git@github.com:dmdevgo/RxPM.git</developerConnection> <url>https://github.com/dmdevgo/RxPM</url> </scm> <dependencies> <dependency> <groupId>androidx.annotation</groupId> <artifactId>annotation</artifactId> <version>1.2.0-beta01</version> </dependency> <dependency> <groupId>com.jakewharton.rxrelay2</groupId> <artifactId>rxrelay</artifactId> <version>2.1.1</version> </dependency> <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxandroid</artifactId> <version>2.1.1</version> </dependency> <dependency> <groupId>com.jakewharton.rxbinding3</groupId> <artifactId>rxbinding</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.2.20</version> </dependency> </dependencies> </project>