bottom-navigation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.sephiroth.android.library.bottomnavigation</groupId> <artifactId>bottom-navigation</artifactId> <version>3.0.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"> <modelVersion>4.0.0</modelVersion> <groupId>it.sephiroth.android.library.bottomnavigation</groupId> <artifactId>bottom-navigation</artifactId> <version>3.0.0</version> <packaging>aar</packaging> <name>Material Bottom Navigation</name> <description>Material Design Bottom Navigation Component</description> <url>https://github.com/sephiroth74/Material-BottomNavigation</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://github.com/sephiroth74/BottomNavigation/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>sephiroth74</id> <name>Alessandro Crugnola</name> <email>alessandro.crugnola@gmail.com</email> <url>http://blog.sephiroth.it</url> <roles> <role>author</role> </roles> </developer> </developers> <scm> <connection>scm:git@github.com:sephiroth74/Material-BottomNavigation.git</connection> <developerConnection>scm:git@github.com:sephiroth74/Material-BottomNavigation.git</developerConnection> <url>https://github.com/sephiroth74/Material-BottomNavigation</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.appcompat</groupId> <artifactId>appcompat</artifactId> <version>1.0.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.android.material</groupId> <artifactId>material</artifactId> <version>1.1.0-alpha01</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.readystatesoftware.systembartint</groupId> <artifactId>systembartint</artifactId> <version>1.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.jakewharton.timber</groupId> <artifactId>timber</artifactId> <version>4.7.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.balysv</groupId> <artifactId>material-ripple</artifactId> <version>1.0.2</version> <scope>compile</scope> </dependency> </dependencies> </project>