MVN

com.github.icarus-sullivan : fragmentrouter

Maven & Gradle

Apr 05, 2016
0 stars

FragmentRouter · FragmentRouter is a simpler way to handle Fragment Navigation in Android projects. It operates like a Undo-Redo implementation making use of default Java Stacks to handle the navigation, but still relies on FragmentManager under the hood.

<dependency>
    <groupId>com.github.icarus-sullivan</groupId>
    <artifactId>fragmentrouter</artifactId>
    <version>1.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.icarus-sullivan : fragmentrouter to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.4

All Versions

Choose a version of com.github.icarus-sullivan : fragmentrouter to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
fragmentrouter-1.0.4

How to add a dependency to Maven

Add the following com.github.icarus-sullivan : fragmentrouter maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.icarus-sullivan</groupId>
    <artifactId>fragmentrouter</artifactId>
    <version>1.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.icarus-sullivan : fragmentrouter gradle dependency to your build.gradle file:

implementation 'com.github.icarus-sullivan:fragmentrouter:1.0.4'

Gradle Kotlin DSL: Add the following com.github.icarus-sullivan : fragmentrouter gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.icarus-sullivan:fragmentrouter:1.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.icarus-sullivan : fragmentrouter sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.icarus-sullivan" % "fragmentrouter" % "1.0.4"