일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- andorid studio
- Switch to the Play Referrer API by March 1
- 안드로이드
- deprecating the install_referrer
- hardcoded string search
- RxJava2
- 하드코드검색
- rxandroid
- RXjava
- android P
- Rx자바
- java
- Retrofit2
- Android
- RX
Archives
- Today
- Total
목록android aar (1)
Lucky Dog
[안드로이드] 안드로이드 라이브러리 프로젝트 AAR 종속성 문제 (android library project aar dependency issue)
안드로이드 라이브러리 프로젝트를 AAR 로 만들면, AAR 안에는 종속 라이브러리들이 포함되지 않는다. 아래와 같이 라이브러리 프로젝트에서 retrofit 이 dependencies 걸려 있어도 aar 로 만들면 retrofit 은 제외하고 aar이 생성된다. "transitive=true" 옵션도 이 문제를 해결해 주지 못함. Ex) apply plugin: 'com.android.library' dependencies { implementation 'com.squareup.retrofit2:retrofit:2.4.0' }방법 1) Dependencies lib 를 jar 형태로 libs 폴더에 추가 후 AAR 생성 AAR 에 포함되어 배포된다. 방법 2) AAR 호출자가 ..
안드로이드
2018. 7. 26. 11:53