Mobile/Android
[Android][AndroidStudio] ignore file 설정
out of coding
2016. 11. 21. 14:54
프로젝트를 하다보면, 쓸데 없이 프로젝트 파일들이 딸려 올라가서 고생하는 경우가 많습니다.
이러한 경우를 위해서, ignore 을 설정하여야 합니다.
특히나 저는 맥을 사용하지만 다른 개발자들은 윈도우에서 개발을 하기에 해놓고 작업하는게 좋습니다.
#built application files
*.apk
*.ap_
# files for the dex VM
*.dex
# Java class files
*.class
# generated files
bin/
gen/
# Local configuration file (sdk path, etc)
local.properties
# Windows thumbnail db
Thumbs.db
# Eclipse project files
.classpath
.project
# Android Studio
*.iml
.idea/
.idea/workspace.xml – remove # and delete .idea if it better suit your needs.
.gradle/
build/