Created
April 23, 2014 08:38
-
-
Save gandharva/11207287 to your computer and use it in GitHub Desktop.
.gitignore file to be included while developing in 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
| .DS_Store | |
| # 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 | |
| # Eclipse project files | |
| .classpath | |
| .project | |
| # Android Studio | |
| .gradle | |
| gradlew | |
| gradlew.bat | |
| build/ | |
| /.idea/workspace.xml | |
| .idea/ | |
| /local.properties | |
| /*/local.properties | |
| /*/out | |
| /*/*/build | |
| /*/*/production | |
| *.iml | |
| *~ | |
| *.swp | |
| *.ipr | |
| *.iws | |
| # backup files | |
| *.bak |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment