Could not find com.github.tipsi:CreditCardEntry:1.4.8.10.
See original GitHub issueI am running into an issue with trying to build on android. Its complaining about two separate things. The first:
Configure project :tipsi-stripe
Configuration 'compile' in project ':tipsi-stripe' is deprecated. Use 'implementation' instead.
which i don’t think is breaking it, but i thought i would report anyway.
and then the error that is failing the build:
Could not resolve all files for configuration ':app:debugCompileClasspath'.
> Could not find com.github.tipsi:CreditCardEntry:1.4.8.10.
Searched in the following locations:
file:/Users/josh/Library/Android/sdk/extras/m2repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
file:/Users/josh/Library/Android/sdk/extras/m2repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
file:/Users/josh/Library/Android/sdk/extras/google/m2repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
file:/Users/josh/Library/Android/sdk/extras/google/m2repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
file:/Users/josh/Library/Android/sdk/extras/android/m2repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
file:/Users/josh/Library/Android/sdk/extras/android/m2repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
https://dl.google.com/dl/android/maven2/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
https://dl.google.com/dl/android/maven2/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
file:/Users/josh/.m2/repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
file:/Users/josh/.m2/repository/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
https://jcenter.bintray.com/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
https://jcenter.bintray.com/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
file:/Users/josh/Cauze/CauzeMobile/node_modules/react-native/android/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.pom
file:/Users/josh/Cauze/CauzeMobile/node_modules/react-native/android/com/github/tipsi/CreditCardEntry/1.4.8.10/CreditCardEntry-1.4.8.10.jar
Required by:
project :app > project :tipsi-stripe
any ideas on what might be causing this? I’m having no luck. Thanks
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:7 (1 by maintainers)
Top Results From Across the Web
No results found
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
go to android/build.gradle then add maven { url “https://jitpack.io” } just like below allprojects { repositories { … maven { url “https://jitpack.io” } } }
Add it as another maven url.