在没有android工作室的android工作室代码上工作

时间:2017-02-02 23:33:13

标签: android android-studio vim sdk

我正在尝试帮助开发一些使用android studio制作的代码。我有一台非常古老的笔记本电脑,当我尝试运行Android工作室时,它会冻结。

我认为,由于android studio只是一个IDE,我应该能够使用vim处理代码。但是,我已经达到了需要在项目设置中更改SDK路径的程度。我不知道该怎么做(而且它也有点朦胧)。

我的问题是:

  1. 使用vim
  2. 处理此代码是否可行
  3. 如果是,我该如何更改SDK路径?
  4. 非常感谢。

1 个答案:

答案 0 :(得分:1)

Android SDK路径位于项目根目录的local.properties文件中。

## This file is automatically generated by Android Studio.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
# Date
sdk.dir=/path/to/your/sdk

是的,您可以使用vim并运行

./gradlew assembleDebug

构建调试版本。