9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GitHub Actionsで「No version of NDK matched the requested version 20.0.5594570. Versions available locally: 21.0.6113669」というエラーが出た時に…

Posted at

CIでエラー

GitHub ActionsでAndroidアプリのビルドをしようとしたら「 No version of NDK matched the requested version 20.0.5594570. Versions available locally: 21.0.6113669 」というエラーが出てCIが失敗するようになってしまいました。

対策

app/build.gradle に下記の通り ndkVersion を指定してあげることで、エラーが出ずにビルドが通るようになりました。

android {
・・・略・・・

    ndkVersion "21.0.6113669"
}

参考

9
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?