본문 바로가기

반응형

gradle

(4)
[Gradle] local aar 파일 추가하기 빌드해서 aar을 생성했는데… 그냥 dependency에 넣어서는 추가가 안된다. 뭐지;; 일단 duplicate 오류가 나면 aar과 겹치는 리소스가 있어서 그렇다. 그래서 모듈 리소스명 앞에 prefix를 붙여서 해결함. 그후 빌드는 성공했는데 class를 찾을 수 없다!!!!!! 뭐지… compile fileTree(dir: 'libs', include: ['*.jar','*.jar']) compile files('libs/chope-1.0.0.aar') 이 방법 둘다 안 먹힌다. 해결 방법은 다음과 같다. aar은 꼭 repository에서만 추가되어야 하나 보다. 그래서 일단 local repository를 추가해준다. repositories { flatDir { dirs 'libs' } } 그..
[Gradle] Android 모듈 aar파일명 변경 Android Module은 빌드되면 .aar (Android ARchive) 파일로 생성됩니다. 기본으로 build/outputs/aar 위치에 [module].aar 로 생성됩니다. [module]-[version].aar 으로 변경하려면 아래와 같이 설정합시다! android { ..... buildTypes { release { project.archivesBaseName='chope' project.version=defaultConfig.versionName ..... } } }
gradle 로 NDK OpenGL 빌드 android { defaultConfig { ndk{ moduleName "moduleName" ldLibs "GLESv1_CM", "log" } } }
.gitignore 이 적용되지 않아??? 두명이서 Android Studio로 개발을 하다 보니 build .ideal 폴더에 있는 파일때문에 계속 충돌이 발생합니다..gitignore를 아무리 적용해도 실제로 적용되지 않는군요...제대로 적용한 것 같은데... 잘못 작성했나 해서 http://www.gitignore.io/ 여기에서 Android Studio, Android 키워드로 생성해서적용해도 반응이 없네요.google 님에게 계속 물어 본 끝에 답변을 받았습니다. git rm -r --cached .git add .git commit -m "fixing .gitignore" 생각보다 너무 간단하네요....; 출처)Randall Kent / .gitignore not workinghttp://www.randallkent.com/devel..

반응형