commons-android-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.raxdenstudios.commons</groupId> <artifactId>commons-android-test</artifactId> <version>4.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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.raxdenstudios.commons</groupId> <artifactId>commons-android-test</artifactId> <version>4.3.0</version> <packaging>aar</packaging> <name>AndroidTest Commons</name> <description>AndroidTest commons is a library with a set of useful classes to help to developer to work with android testing.</description> <url>https://github.com/raxden/android-commons</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>raxden</id> <name>Ángel Gómez</name> <email>raxden.dev@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:github.com/raxden/android-commons.git</connection> <developerConnection>scm:git:ssh://github.com/raxden/android-commons.git</developerConnection> <url>https://github.com/raxden/android-commons/tree/master</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.4.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.arch.core</groupId> <artifactId>core-testing</artifactId> <version>2.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test.ext</groupId> <artifactId>junit-ktx</artifactId> <version>1.1.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test</groupId> <artifactId>rules</artifactId> <version>1.3.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test</groupId> <artifactId>runner</artifactId> <version>1.3.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.mockk</groupId> <artifactId>mockk</artifactId> <version>1.9.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.mockk</groupId> <artifactId>mockk-android</artifactId> <version>1.9.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.koin</groupId> <artifactId>koin-test</artifactId> <version>2.1.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.andrzejchm.RESTMock</groupId> <artifactId>android</artifactId> <version>0.4.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.lachlanmckee</groupId> <artifactId>timber-junit-rule</artifactId> <version>1.0.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test.espresso</groupId> <artifactId>espresso-core</artifactId> <version>3.3.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test.espresso</groupId> <artifactId>espresso-contrib</artifactId> <version>3.3.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test.espresso</groupId> <artifactId>espresso-web</artifactId> <version>3.3.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>androidx.test.espresso</groupId> <artifactId>espresso-intents</artifactId> <version>3.3.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>