当我从Android Studio打开Android SDK管理器时,SDK路径显示为:
\android-studio\sdk
我想改变这条路径。我该怎么做?
当我从Android Studio打开Android SDK管理器时,SDK路径显示为:
\android-studio\sdk
我想改变这条路径。我该怎么做?
当前回答
点击文件菜单。 选择项目结构。 在“SDK Location”文本框中编辑路径。 从下次Android Studio将使用此位置为您的所有项目。
注意:避免在路径中有空格,因为它有时可能会导致问题。
其他回答
下面是如何在android studio中更改android sdk路径:
Open your required android project in Android studio Click on the main project folder and press F4 Now click on "SDKs" under Platform Settings (Left hand side of the dialog box) You should now see a plus sign on the top, click it and choose "Android SDK" Now you would be asked to choose the required SDK folder Select the required build target(if necessary) and click "ok" Now you should see the new entry in the list of SDKs Click "Modules" under Project Settings Select your project folder and in the Dropdown for "Module SDK", select the new SDK entry and click "apply" Now click "OK" and your done.
注意:如果更改没有生效,重新启动android studio应该可以解决这个问题。
虽然上面的许多答案都可以达到目的,但我们可以在项目本身中做一件直接的事情。
在Eclipse中,进入Window->Preferences,从左侧菜单中选择“Android”。在右边的面板上,你会看到“SDK Location”。在这里提供路径。
祝你好运。
你也可以创建环境变量ANDROID_HOME(在Windows中)到Android SDK的位置,Android Studio将使用它。
在Android Studio 2.2.3中,我认为你可以从顶部菜单更改所有项目的默认SDK位置:
文件->项目结构…
出现如下所示的窗口:
这就是它是如何做到的,在Android Studio的windows
Done