2021年6月15日火曜日

jcenter()が非推奨の為、AndroidStudioで新規作成するとエラー

AndroidStudioで新規プロジェクトを作成すると、以下のエラーが出てビルドできなくなったので備忘録
Please remove usages of `jcenter()` Maven repository from your build scripts and migrate your build to other Maven repositories.
This repository is deprecated and it will be shut down in the future.
See http://developer.android.com/r/tools/jcenter-end-of-service for more information.
Currently detected usages in: root project 'My Application', project ':app'
Affected Modules: app

どうやら「jcenter()が非推奨になって、じきに完全消滅するから、ビルドスクリプトから消してくれ」とのこと


解決策

project/build.gradleからjcenter()を削除してやれば解決する。
ご丁寧に警告コメントまで書いてくれてる (なら最初から消しといてくれればいいのに...)

赤枠で囲ってる行をコメントアウトするか、削除すればよい


0 件のコメント:

コメントを投稿