We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
com.android.tools.build:gradle:4.1.1
The text was updated successfully, but these errors were encountered:
add jcenter() into your dependencies: repositories { google() mavenCentral() jcenter() }
repositories { google() mavenCentral() jcenter() }
Sorry, something went wrong.
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
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: