1 # built application files 2 *.apk 3 *.ap_ 4 5 # files for the dex VM 6 *.dex 7 8 # Java class files 9 *.class 10 11 # generated files 12 bin/ 13 out/ 14 gen/ 15 16 # Libraries used by the app 17 # Can explicitly add if we want, but shouldn't do so blindly. Licenses, bloat, etc. 18 /libs 19 20 21 # Build stuff (auto-generated by android update project ...) 22 build.xml 23 ant.properties 24 local.properties 25 project.properties 26 27 # Eclipse project files 28 .classpath 29 .project 30 31 # idea project files 32 .idea/ 33 .idea/.name 34 *.iml 35 *.ipr 36 *.iws 37 38 #gitignore file 39 .gitignore 40