-
Notifications
You must be signed in to change notification settings - Fork 456
New issue
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
Build Error maybe cannot find repo #360
Comments
I solved this problem that I added "jcenter()" in gradle. |
Really appreciate your solution... |
yes fixed by this but jcenter() is depricated for sdk 32 do you have any other alternate . |
I don't have any alternative. If this exists in maven central, we wouldn't need to add jcenter to access this. |
Found the solution. add this line in gradle.properties. -> android.enableJetifier=true |
When I tried to build, I got a error below.
"Execution failed for task ':app:checkDebugAarMetadata'.
If I tried to check url (like https://www.jitpack.io ~~~) ,
Android Studio Version : Bumble bee build.gradle (Project) : ``` allprojects { repositories { google() maven{url 'https://www.jitpack.io'} mavenCentral() } } ``` settings.gradle : ``` buildscript { repositories { google() maven {url 'https://www.jitpack.io'} mavenCentral() }I got "Repository not found: https://yuyakaido.com/android/card-stack-view"
}
The text was updated successfully, but these errors were encountered: