概要
何回も何回もググっては時間を使っていたので書きます。
AndroidStudio にて新しいプロジェクトを作成した時に、
- Variant 'apiElements' capability com.android.tools.build:gradle:7.4.2 declares a library, packaged as a jar, and its dependencies declared externally:
- Incompatible because this component declares an API of a component compatible with Java 11 and the consumer needed a runtime of a component compatible with Java 8
のようなエラーが吐き出されbuild (Hello, world) ができないときの対処法です。
解決策
上のツールバーの
AndroidStudio --> Preferences --> Build, Execution, Deployment --> Build Tools --> Gradle
を開いて、
Gradle JDK:
をドロップダウンから11 に変更。
Apply --> OK
で解決します。
以上です。