本文介绍了Android Studio 不断改变“project-jdk-name";在misc.xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们在两台机器 (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 位置更改回嵌入式 SDK";从下拉菜单

执行此操作后,.idea/misc.xmlproject-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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 23:35