问题描述
我们正在两台计算机(macOS)上使用Android Studio(当前为3.6).
We are using Android Studio (currently 3.6) on two machines (macOS).
.idea/misc.xml
文件不断将project-jdk-name
的值从"1.8"更改为"1.8(2)".
The .idea/misc.xml
file keeps changing the value for project-jdk-name
from "1.8" to "1.8 (2)" back and forth.
这已经持续了一段时间(至少从3.4/3.5开始).所有项目都在发生这种情况.两种安装都配置为使用嵌入式JDK(项目结构">"SDK位置">"JDK位置").
This has been going on for a while (at least since 3.4/3.5). It's happening for all projects.Both installations are configured to use the embedded JDK (Project Structure > SDK Location > JDK location).
- 如何停止?
- 这个名字甚至是哪里来的?
感谢您的帮助!
推荐答案
我能够按照以下步骤解决此问题:
I was able to resolve the issue by following these steps:
- 打开"文件>项目结构> SDK位置"
- 从"/Library/Java/JavaVirtualMachines/..."手动选择JDK位置(必须安装另一个JDK 1.8)
- 点击应用"
- 将JDK位置更改回"Embedded SDK"从下拉菜单中
完成此操作后,.idea/misc.xml
中project-jdk-name
的值仍为"1.8".
After doing this the value for project-jdk-name
in .idea/misc.xml
remains at "1.8".
这篇关于Android Studio不断更改"project-jdk-name",在misc.xml中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!