Notice
Recent Posts
Recent Comments
Tags
- 404에러페이지
- 맥 오라클설치
- simpe ftp
- 말줄임표시
- ViewData
- asp.net Select
- 강제이동
- asp ftp
- php 캐쉬제거
- swagger 500 error
- Mac Oracle
- javascript 바코드 생성
- XSS방어
- SSD 복사
- XSS PHP
- asp.net dropdownlist
- ViewBag
- django 엑셀불러오기
- 바코드 생성하기
- 원격ftp
- asp.net core Select
- 타임피커
- asp.net core swagger
- JavaScript
- javascript redirection
- 하드 마이그레이션
- ASP.Net Core 404
- TempData
- jquery 바코드생성
- 하드 윈도우 복사
웹개발자의 기지개
API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()' 본문
안드로이드
API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'
웹개발자 워니 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로 마이그레이션 시키니 무사통과~~
'안드로이드' 카테고리의 다른 글
| listener 에서 return값 true 와 false (0) | 2019.11.05 |
|---|---|
| Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+. 에러발생 (0) | 2019.10.14 |
| Manifest merger failed 병합 에러 (0) | 2019.08.08 |
| 사이트 내용 추출 실습 2 - 크롤링하기 (로또 당첨번호, 네이버/다음 실시간 검색어 조회) , RecylerView 활용 (0) | 2019.07.28 |
| Log 의 유형 정리 (0) | 2019.07.24 |
Comments