Library for creating Questionaires in Shuffleboard.
Instructions from CelestialWren
Credit for this system of adding libraries without using WPIlib jsons goes to Dannie on team 4272, Maverick Boiler Robotics. Their code is great! You can find it here: https://github.com/maverick-boiler-robotics-team-4272
- Create a folder called libs in the root directory of the project
- Add built library to the libs folder
- Go into build.gradle and add
repositories {
flatDir {
dirs "./libs"
}
}
-
Find dependencies block and add
implementation name:'[insert name of JAR here, omit the .jar]'
after theimplementation wpi.java.vendor.java()
line -
Add
!libs/*.jar
to your .gitignore to allow the file to be added to your repo. (or analagous action for other version tracking software)
Example code is availible in examples.md