1. libs 폴더의 모든 라이브러리를 추가
repositories {
mavenCentral()
flatDir {
dirs 'libs', 'aars'
}
}
2. libs 폴더의 개별 라이브러리 추가
implementation files('libs/Abcd.jar')
'Android' 카테고리의 다른 글
| [Retrofit] Non-body HTTP method cannot contain @Body (0) | 2022.07.29 |
|---|---|
| Callback 함수와 runOnUiThread (0) | 2022.07.24 |
| [Android] Only the original thread that created a view hierarchy can touch its views (0) | 2021.10.25 |
| [Android] SDK 23 Apache HttpClient (0) | 2021.08.17 |
| [Java] String.equals() 주의점 (0) | 2021.08.03 |