DotLoadersPack-Android
DotLoadersPack-Android copied to clipboard
Repository does not sync build.gradle
Added repository to Module build.gradle and synced. Also added JCentre to project. Android Studio complains it cannot find build.gradle.
Gradle version: com.android.tools.build:gradle:4.1.1
Kotlin: v1.5.0
add jcenter() into your dependencies:
repositories { google() mavenCentral() jcenter() }
please add this in your settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google()
mavenCentral()
maven("https://jcenter.bintray.com")
}
}
repository was hosted in jcenter which is deprecrated now , hence explicitly specify the url . @Hmerman6006