由于我不知道的原因,languageLevel密钥从JDK_1_8更改为JDK_1_7。
可能会发生什么?
这与从事该项目的其他开发人员的IDE有关吗?也许他们还有另一个Android Studio设置?
这是在我发现源代码管理下的文件已更改后弹出的内容:
$ git diff
diff --git a/.idea/misc.xml b/.idea/misc.xml
index fbb6828..5d19981 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -37,7 +37,7 @@
<ConfirmationsSetting value="0" id="Add" />
<ConfirmationsSetting value="0" id="Remove" />
</component>
- <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
这是我的gitignore,以防万一。
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
我该如何进行操作,以使其仅停留在另一方向?
.gitignore
,而该解决方法与此相反。您失去了与所有开发人员共享项目属性的能力,例如检查/皮棉设置,我们甚至在进行代码审查之前就使用了检查/皮棉设置来防止某些标准的不当行为。您可以添加/.idea/misc.xml
到.gitignore
文件中以解决此问题。