compile project 포함시키는 방법 (How to Add a Library in Android Studio Project)
안드로이드/Android Studio 2019. 2. 1. 11:19GitHub 에 소스를 보면
dependencies {
compile project(':usbSerialForAndroid')
}
라고 되어 있는 경우가 있다.
이런 경우에는 어떻게 해야 프로젝트에 포함시켜 컴파일 할 수 있을까?
먼저, setting.gradle 파일을 열어서 프로젝트명을 본다.
include ':usbserialport'
라고 되어 있는 것이 보일 것이다.
여기에 추가를 한다.
include ':usbserialport'
include ':usbserialport:usbSerialForAndroid'
이제 실제 파일을 어떤 폴더에 넣는지 보자.
폴더를 여기에 넣었다.
build.gradle 에서는
dependencies { |
로 적어주면 된다.
만약 libs 밑에 추가하고자 한다면 setting.gradle 에서는
include ':usbserialport'
include ':usbserialport:libs:usbSerialForAndroid'
라고 적어주고,
build.gradle 에서는
compile project('libs:usbSerialForAndroid')
라고 적어주면 된다.
이렇게 하고 나면 소소하게 발생하는 에러는 수정해주면 된다.
'안드로이드 > Android Studio' 카테고리의 다른 글
Android APK 업그레이드 (0) | 2019.06.16 |
---|---|
앱이 두개 설치되는 문제 (1) | 2019.06.04 |
Android Studio 3.0.3 ==> 3.1.3 업데이트후 증상 (0) | 2018.07.20 |
[안드로이드 스튜디오] dependencies 설정 (0) | 2017.10.26 |
[안드로이드 스튜디오] 패키지명 변경 (0) | 2017.10.16 |