Android studio设置忽略文件

Android项目提交代码时一般忽略的文件:
1、.idea文件夹
2、所有的build文件夹
3、所有的.iml文件
4、local.properties文件。

方式一:

版本3.6之前

File >>> setting >>> version control >>> ignored file


image.png
版本3.6之后:

File ->setting->editor->File Types


image.png
版本Arctic Fox (Patch 3):经网友提醒,此处是设置Android studio对项目的忽略文件,设置后这些文件将不在项目中显示(我的锅)

File ->setting->editor->File Types(Ignoreed Files and Folders)
(点击加号增加忽略的文件或者文件夹,红框内为新增内容)

image.png

方式二:

在项目的.idea/workspace.xml的文件里设置(不知为何没有生效)

    
    
        
        ...    
         
         
       
        
        
        
         
        
       
      
        
    ...    
  

方式三:
在项目的隐藏文件夹.idea的 .gitignore 中手动设置,内容可参考方式一的内容


image.png

你可能感兴趣的:(Android studio设置忽略文件)