Could not resolve com.github.tipsi:CreditCardEntry:1.5.1.
See original GitHub issueMost recently I started getting this error on bitrise, even when I had zero problems with it before
I have maven repository in allprojects
allprojects {
repositories {
// Add jitpack repository (added by tipsi-stripe)
maven { url "https://jitpack.io" }
{...}
}
}
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:11 (2 by maintainers)
Top Results From Across the Web
Android: Failed to resolve: com.github.vpotvin:caldroidx:1.0
Specified implementation 'com.github.vpotvin:caldroidx:1.0' in the app-level build.gradle. Below is my project-level build.gradle:
Read more >Gradle not able to resolve dependency from private github ...
I am trying to get an android library dependency from a private github repository but it is failing to resolve the dependency.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Found out that jitpack had some issues around september 12.
I solved the issue by changing jitpack url in the build.gradle from https://jitpack.io to https://www.jitpack.io (added www)
maven { url "https://www.jitpack.io" }
I solved this issue by placing the maven { url “https://www.jitpack.io” } first before maven { url “$rootDir/…/node_modules/react-native/android” }