안드로이드) 라이브러리 추가 오류 해결

밍나·2022년 4월 25일
0

Android

목록 보기
32/36
  • build.gradle에 library dependency를 추가했으나 코드에서 해당 라이브러리를 이용할 때 아래의 오류가 날 때가 있다.

    class referenced in the layout file ... was not found in the project or the libraries

해결 방법

  1. aar 파일 다운

    • https://mvnrepository.com/ 에서 해당 라이브러리를 검색하고 최신 버전에 들어가면 다운 받을 수 있다.
  2. Project>app>libs(없다면 디렉토리 추가)에 다운 받은 aar 파일 추가하기

  3. build.gradle(Module)에 implementation files('libs/aar파일명(확장자 포함)') 추가

    • ex) implementation files('libs/ruler-picker-1.1.aar')
profile
🤗🤗🤗

0개의 댓글