gradle(2)
-
[Error] Could not find com.android.support:support-v4:23.4.0.
## 현상 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..
2020.12.08 -
[ERROR] invoke-customs are only supported starting with android o (--min-api 26)
# 방법 1 (확인) build.gradle(Module: app) 에 추가 android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } ... } # 방법 2( 미확인 ) # Disable 'Instant Run'. Android Studio -> File -> Settings -> Build, Execution, Deployment -> Instant Run -> Disable checkbox
2020.07.30