在 Mac 上使用 Android Studio 在命令行中构建 Android 应用程序

Build Android app in command-line with Android Studio on Mac

我在 Mac 上安装了 Android Studio。我有一个 android 项目。我想在命令行中构建它。如果我尝试构建,甚至只是获取可用任务:

./gradlew tasks

我收到这个错误:

No Java runtime present, requesting install.

我不想安装新的 JDK。我可以在 Android Studio 中构建应用程序。如何使用 Android Studio 安装的 JDK?

在本文中您可以找到解决方案: https://medium.com/@peter.configcat/build-your-android-app-from-command-line-with-android-studio-on-mac-ee1f7434709b

将 Android Studio JDK 添加到您的路径中。将此添加到您的 .zshenv:

export JAVA_HOME=/Applications/Android\ Studio.app/Contents/jre/jdk/Contents/Home
export PATH=”$JAVA_HOME/bin:$PATH”

./gradlew tasks./gradlew assmebleDebug 应该可以。