I am working on a project from two different computers, both running Windows 8.1 and Android Studio 0.5.1. Every time I build the app on a different PC, Android Studio makes changes to some of the config files which are tracked by git.
For instance, .idea/misc.xml
:
- <component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-name="1.7" project-jdk-type="JavaSDK">
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-name="JDK" project-jdk-type="JavaSDK">
(-
and +
at the beginning of the lines represent removed and added lines)
MyProject.iml
:
- <orderEntry type="jdk" jdkName="Android API 19 Platform" jdkType="Android SDK" />
+ <orderEntry type="jdk" jdkName="Android SDK" jdkType="Android SDK" />
I'm under the impression that these two files should be tracked by version control, so why are the different machines making changes to it every time I load the project? I can't find any setting that would affect this.