Skip to content

Installation

To use TurtleTracerLib in your FTC project, follow these steps:

Add the following repositories to your build.gradle (Module: app) or settings.gradle file:

maven { url "https://repo.dairy.foundation/releases" }
maven { url = 'https://mymaven.bylazar.com/releases' }
maven { url 'https://jitpack.io' }

Add the dependencies to your build.gradle (Module: app) dependencies block:

dependencies {
// TurtleTracerLib
implementation 'com.github.Mallen220:TurtleTracerLib:master-SNAPSHOT' // or use a specific tag
// Core Dependencies
implementation 'com.turtletracer:ftc:2.0.0'
implementation 'org.solverslib:core:0.3.3' // Will be replaced with TurtleTracerLib-specific version in future
implementation 'org.solverslib:turtleTracer:0.3.3'
}

After adding these, sync your Gradle project to download the dependencies.