From 5fd638545dc2e3c1df86b7a7fdd8479c712e24ce Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Fri, 13 Dec 2019 16:12:18 +0100 Subject: [PATCH] build.gradle: Improve android API exception message --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0ae894a8c..0104ae3af 100644 --- a/build.gradle +++ b/build.gradle @@ -680,7 +680,7 @@ def getAndroidRuntimeJar() { if (androidJar.isFile()) { return androidJar } else { - throw new Exception("Can't find android.jar for $androidApiLevel API. Please install corresponding SDK platform package") + throw new Exception("Can't find android.jar for API level ${androidApiLevel}. Please install corresponding SDK platform package") } }