我正在尝试帮助开发一些使用android studio制作的代码。我有一台非常古老的笔记本电脑,当我尝试运行Android工作室时,它会冻结。
我认为,由于android studio只是一个IDE,我应该能够使用vim处理代码。但是,我已经达到了需要在项目设置中更改SDK路径的程度。我不知道该怎么做(而且它也有点朦胧)。
我的问题是:
非常感谢。
答案 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
构建调试版本。