Created
September 7, 2013 18:14
-
-
Save shaobin0604/6477873 to your computer and use it in GitHub Desktop.
git ignore for android project using android studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # built application files | |
| bin/* | |
| gen/* | |
| # files for the dex VM | |
| *.dex | |
| # Java class files | |
| *.class | |
| # generated GUI files | |
| *R.java | |
| *BuildConfig.java | |
| # vim backup files | |
| *~ | |
| # ant local settings | |
| local.properties | |
| # proguard generated files | |
| proguard/* | |
| # log files | |
| system.txt | |
| radio.txt | |
| main.txt | |
| traces.txt | |
| traces.txt.bugreport | |
| # Thumbs.db | |
| Thumbs.db | |
| # Android Studio | |
| *.iml | |
| *.iws | |
| *.ipr | |
| .idea/ | |
| .gradle/ | |
| */build/ | |
| build | |
| *~ | |
| *.swp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment