Droidcore is an Android library that gives you various pre-built Jetpack Compose component, curated and built with love from the team at Neotica.
Go to your settings.gradle file:
settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
//Add the line below
maven { url 'https://jitpack.io' }
}
}
settings.gradle.kts
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
//Add the line below
maven { url = URI("https://jitpack.io") }
}
And then add to your dependency on your build.gradle(app) file:
dependencies {
implementation ("com.github.laetuz:Droidcore:1.2.5")
}
Remember to always add the latest release version.