CODEDRAGON ㆍDevelopment/Android
에러 메시지
Could not find com.android.tools.build:aapt2:3.2.0-4818971.
해결방법
현재 프로젝트에 Google repository를 추가해주면 해결됩니다.
메뉴: [File] >> [Project Structure…]
[Project] 클릭
Android Plugin Repository와 Default Library Repository에 google()을 추가해 줍니다.
Android Plugin Repository |
jcenter, google() |
Default Library Repository |
jcenter, google() |
or
bild.gradle(Project: projectname) 에서 google()을 통해 Google repository를 추가해 줍니다.
buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.2.0'
// NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } }
allprojects { repositories { jcenter() google() } }
|
'Development > Android' 카테고리의 다른 글
Tag로 설정한 Log만 필터 처리하여 보기 (0) | 2020.01.06 |
---|---|
\menu 폴더에 Menu resource file 파일(XML) 생성하기 (0) | 2019.12.31 |
Samsung Emulator Skin - download (0) | 2019.12.19 |
AndroidStudio Update - to 3.3 (0) | 2019.12.12 |
하이브리드 앱 도식도 (0) | 2019.12.07 |