build.gradle: Improve android API exception message

This commit is contained in:
Paul Schaub 2019-12-13 16:12:18 +01:00
parent 9d626bf787
commit 5fd638545d
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 1 additions and 1 deletions

View File

@ -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")
}
}