반응형
이번 포스팅은 Android Build 오류에 대하여 알아보도록 하겠습니다.
< Error>
WARNING: API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
It will be removed at the end of 2019.
For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
REASON: It is currently called from the following trace:
< Solution >
1. 'com.google.gms:google-services:4.3.0'에서 오류가 발생하였습니다.
gms 라이브러리 내부적으로 발생하는 오류로써 향후 수정이 되어 배포될 것입니다.
2. 임시방편으로 build.gradle의 gms 라이브러리 버전을 downgrade 하여 아래와 같이 수정하면 오류 없이 정상적으로 Build가 될 것 입니다.
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
반응형
'Development > Error' 카테고리의 다른 글
[Error] Can only replace keys with same alias (0) | 2019.09.01 |
---|---|
[Error] This Handler class should be static or leaks may occur (anonymous android.os.Handler) (0) | 2019.08.29 |
[Error] Unsupported key algorithm: RSA. OnlyEC supported (0) | 2019.08.28 |
[Error] exposed beyond app through ClipData.Item.getUri() (0) | 2019.08.27 |
[Error] entries cannot be protected with passwords (0) | 2019.08.27 |