From 04b1d695ab527eb81dbfb5e77474a79b65c10759 Mon Sep 17 00:00:00 2001 From: Dimitry Ivanov Date: Thu, 16 Jul 2020 18:25:59 +0300 Subject: [PATCH] Add explicit NDK version for CI builds --- app-sample/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-sample/build.gradle b/app-sample/build.gradle index 0ef180a6..cdfad78d 100644 --- a/app-sample/build.gradle +++ b/app-sample/build.gradle @@ -95,6 +95,10 @@ android { signingConfig signingConfigs.config } } + } else { + // it seems to be a bug in NDK handling, github fail to build the project withe the: + // `com.android.builder.errors.EvalIssueException: No version of NDK matched the requested version 21.0.6113669. Versions available locally: 21.3.6528147` + ndkVersion '21.3.6528147' } }