What should be in my .gitignore for an Android Studio project?

后端 未结 30 3696
星月不相逢
星月不相逢 2020-11-22 04:23

What files should be in my .gitignore for an Android Studio project?

I\'ve seen several examples that all include .iml but IntelliJ docs sa

30条回答
  •  时光取名叫无心
    2020-11-22 05:04

    I use this .gitignore. I found it at: http://th4t.net/android-studio-gitignore.html

    *.iml
    *.iws
    *.ipr
    .idea/
    .gradle/
    local.properties
    
    */build/
    
    *~
    *.swp
    

提交回复
热议问题