관리 메뉴

웹개발자의 기지개

API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()' 본문

안드로이드

API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'

http://portfolio.wonpaper.net 2019. 8. 10. 16:13

작업중에 api 업데이트를 이래저래 새롭게 해야 했는데

설치하는 중간중간에, 아래와 같은 메세지 발견 ~~

 

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.
To determine what is calling variant.getMergeResources(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
Affected Modules: app

 

 

일단 원인은 구글 라이브러리 중에 

classpath 'com.google.gms:google-services:4.2.0' 을 classpath 'com.google.gms:google-services:4.3.0' 으로 업그레이드 시킨게 원인이었다.

 

신버전에 되면서, obsolete 되었고, 새로 다른놈으로 교체되었다는 것.

 

4.3을 4.2로 마이그레이션 시키니 무사통과~~

Comments