Installation

To start using Marrow, simply follow the steps below.

Step 1: Add the repositories

Add JitPack to your repositories

In your TeamCode/build.gradle, add the following inside the repositories block (above dependencies):

repositories {
    mavenCentral()
    maven { url = "https://jitpack.io" }
}

Step 2: Add Marrow as a dependency

In the same build.gradle file, add one of the following lines inside the dependencies block:

dependencies {
   implementation 'com.github.Skeleton-Army:Marrow:VERSION
}

Replace VERSION with the latest version below:

Step 3: Sync your project with Gradle

In Android Studio, click "Sync Now" when prompted, or go to File > Sync Project with Gradle Files to apply the changes.

Already installed Marrow? Head to the Core Features section to learn more about the features.

Last updated