티스토리 뷰
그래들에 디펜던시 설정
dependencies {
compileonly files('libs/framework.jar')
}
안드로이드 {} 외부에 .. 디펜던시 위에 빌드 속성 추가
preBuild {
doLast {
def imlFile = file(project.name + ".iml")
println 'Change ' + project.name + '.iml order'
try {
def parsedXml = (new XmlParser()).parse(imlFile)
def jdkNode = parsedXml.component[1].orderEntry.find { it.'@type' == 'jdk' }
parsedXml.component[1].remove(jdkNode)
def sdkString = "Android API " + android.compileSdkVersion.substring("android-".length()) + " Platform"
new Node(parsedXml.component[1], 'orderEntry', ['type': 'jdk', 'jdkName': sdkString, 'jdkType': 'Android SDK'])
groovy.xml.XmlUtil.serialize(parsedXml, new FileOutputStream(imlFile))
} catch (FileNotFoundException e) {
// nop, iml not found
}
}
프로젝트 그래들에 클래스 패스 설정
allprojects {
repositories {
jcenter()
}
// Adds a prefix to the search path for bootstrap classes.
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs.add('-Xbootclasspath/p:app\\libs\\framework.jar')
}
}
}
참조 2: http://www.31mins.com/android-studio-build-system-application/
'android' 카테고리의 다른 글
안드로이드 SurfaceView Video 예제 (0) | 2020.01.31 |
---|---|
ExoPlayer 사용 법. (0) | 2020.01.31 |
타이틀, 하단 홈 백버튼 등 안보이게 처리하기 (0) | 2020.01.21 |
인텐트 oem 연동 리스트 (0) | 2019.09.23 |
QR코드 리더 라이브러리 (0) | 2019.06.14 |
- Total
- Today
- Yesterday
- 구글 맵 경로 그리기
- 차번호 정규표현식
- rn
- 안드로이드
- https://hwan-shell.tistory.com/244
- 구글 맵 선그리기
- adb 환경변수
- react native state
- mac android
- 명령어
- ubunut android
- spannableText
- nosql
- insert
- not working adb
- Android
- 데이터베이스
- 함수형 코드
- not found adb
- ubunut 설치 link
- 차번호 정규식
- mongo db
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- 클래스형 코드
- not starting .bash_profile
- React Native
- 자바
- 귀찮아;;
- text 부분 색 칠하기
- MongoDB
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |