[Error] Could not find com.android.support:support-v4:23.4.0.
2020. 12. 8. 13:42ㆍ개발자료/Android
반응형
## 현상
A problem occurred configuring project ':SlidingMenu'.
> Could not resolve all dependencies for configuration ':SlidingMenu:_debugPublishCopy'.
> Could not find com.android.support:support-v4:23.4.0.
Required by:
project :SlidingMenu
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
## 해결방안
build.gradle (Project : App Name)에서 아래 코드로 업데이트
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
반응형
'개발자료 > Android' 카테고리의 다른 글
escape (0) | 2021.09.29 |
---|---|
Android 개발 관련 정보 (0) | 2020.12.18 |
앱이 종료 되는 시점 인식하기 (0) | 2020.09.24 |
[Error] WebView loadUrl 호출시 Webpage not available, net::ERR_CLEARTEXT_NOT_PERMITTED 발생 (0) | 2020.08.03 |
[ERROR] invoke-customs are only supported starting with android o (--min-api 26) (0) | 2020.07.30 |