1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # http://stackoverflow.com/questions/16736856/what-should-be-in-my-gitignore-for-an-android-studio-project
- #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
- # OSX files
- .DS_Store
- # Eclipse project files
- .classpath
- .project
- # Android Studio
- *.iml
- .idea
- #.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
- .gradle
- build/
- out/
|