Merge pull request #353 from vanitasvitae/androidApiExceptionWording

build.gradle: Improve android API exception message
This commit is contained in:
Florian Schmaus 2020-02-20 15:23:13 +01:00 committed by GitHub
commit 7b5186f651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")
}
}