provider
This contains all provider stubs that are used to create a custom provider. The best place to start with is Provider and ProviderApi
Use as a dependency
Step 1. Add the JitPack repository to your build file
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// other repositories here...
mavenCentral()
maven {
url = uri("https://jitpack.io") // <-- add this
}
}
}
Content copied to clipboard
Step 2. Add the dependency
The latest version can be found here: latest tag
dependencies {
implementation("com.github.flixclusiveorg.core-stubs:provider:$LATEST_CORE_STUBS_VERSION")
}
Content copied to clipboard