「Android/開発環境/AndroidStudio/gradlew実行」の版間の差分
提供: 初心者エンジニアの簡易メモ
行1: | 行1: | ||
+ | ==gradlew実行方法== | ||
$ ./gradlew --rerun-tasks [hogehoge] | $ ./gradlew --rerun-tasks [hogehoge] | ||
行5: | 行6: | ||
} | } | ||
+ | ==実行できないとき== | ||
以下エラーが起こるとき | 以下エラーが起こるとき | ||
<pre> | <pre> | ||
行11: | 行13: | ||
No value has been specified for property 'lintClassPath' | No value has been specified for property 'lintClassPath' | ||
</pre> | </pre> | ||
+ | |||
+ | ANDROID_HOMEを確認。入ってなければ入れる | ||
+ | |||
+ | $ vi ~/.bash_profile | ||
+ | export ANDROID_HOME=/Users/[user1]/Library/Android/sdk | ||
+ | $ source ~/.bash_profile | ||
+ | |||
+ | 参考:https://stackoverflow.com/questions/54962086/gradle-build-fails-due-to-lint-classpath-error-on-android |
2019年11月8日 (金) 15:16時点における版
gradlew実行方法
$ ./gradlew --rerun-tasks [hogehoge]
build.gradle
task hogehoge(type: Copy) { }
実行できないとき
以下エラーが起こるとき
lint FAILED FAILURE: Build failed with an exception. No value has been specified for property 'lintClassPath'
ANDROID_HOMEを確認。入ってなければ入れる
$ vi ~/.bash_profile export ANDROID_HOME=/Users/[user1]/Library/Android/sdk $ source ~/.bash_profile