gpt4 book ai didi

java - Maven 安卓插件 :No Android SDK path could be found

转载 作者:搜寻专家 更新时间:2023-10-30 21:15:31 24 4
gpt4 key购买 nike

我使用 maven-android-plugin版本 3.3.2。当我尝试构建我的 android 项目时,出现以下异常:

org.apache.maven.plugin.MojoExecutionException: No Android SDK path could be found. You may configure it in the plugin configuration section in the pom file using <sdk><path>...</path></sdk> or <properties><android.sdk.path>...</android.sdk.path></properties> or on command-line using -Dandroid.sdk.path=... or by setting environment variable ANDROID_HOME

然而环境变量ANDROID_HOME设置为android sdk路径。

你能帮帮我吗?

最佳答案

听起来,虽然环境变量在您运行的 shell 上可用,但在 Maven 运行的 shell 上不可用。

无论如何,与其解决它,不如创建 a settings file与属性集。一个最小的看起来像这样(写下我的头顶,因为我现在没有可用的设置文件):

<settings>
<profiles>
<profile>
<id>android-settings</id>
<properties>
<android.sdk.path>/path/to/android/sdk</android.sdk.path>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>android-settings</activeProfile>
</activeProfiles>
</settings>

将其放入您的.m2 文件夹或通过Eclipse 在Window->Preferences...->Maven 中设置->用户设置

关于java - Maven 安卓插件 :No Android SDK path could be found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19133913/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com