What are iml files in Android Studio?

前端 未结 4 2048
执笔经年
执笔经年 2020-12-04 07:57

What are iml files in Android Studio project? I read that it is configuration file for modules. I do not understand how it works, and can\'t I just use gradle scripts to int

4条回答
  •  一生所求
    2020-12-04 08:06

    Those files are created and used by Android Studio editor.

    You don't need to check in those files to version control.

    Git uses .gitignore file, that contains list of files and directories, to know the list of files and directories that don't need to be checked in.

    Android studio automatically creates .gitingnore files listing all files and directories which don't need to be checked in to any version control.

提交回复
热议问题