Last active
November 23, 2016 14:07
-
-
Save somoso/9620254 to your computer and use it in GitHub Desktop.
Android Studio gitignore
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 | |
| *.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 | |
| # Info added from here: https://intellij-support.jetbrains.com/entries/23393067 | |
| # Just remove the entirety of the .idea folder - In my experience this causes less problems with IntelliJ if you leave it to one-time autogenerate the .idea files on the developer machine | |
| .idea/ | |
| datasource.xml | |
| dataSources.ids | |
| gradle.xml | |
| .gradle | |
| /*/local.properties | |
| /*/out | |
| /*/*/build | |
| /*/*/production | |
| # We commit *.iml and *.ipr files as they are not user specific configurations. | |
| # However, we add *.iws to source as that file is user specific configuration | |
| *.iws | |
| *~ | |
| *.swp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment