How to
To get a Git project into your build:, (*1)
Step 1. Add the JitPack repository to your build file, (*2)
gradle
maven
sbt
leiningen
Add it in your root build.gradle at the end of repositories:, (*3)
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency, (*4)
dependencies {
implementation 'com.github.zbh931124:Frame:d10e0b9d0e'
}