Documentation

1 minute read

This documentation will covers the different libraries in existence and show how you can interact with them.

The first thing you should do is create a new project in a folder by doing gradle init (if you don’t know how, refer to this guide).

Then you add those lines in your build.gradle:

repositories {
	mavenCentral()
	maven {
		url "https://jitpack.io"
	}
}
dependencies {
	implementation 'com.github.KaptainWutax:SEED:master-SNAPSHOT'
}

Concepts

The gist of it.

Last modified August 19, 2020: Update _index.md (18a4882)