1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-11 14:17:08 +02:00

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

View file

@ -680,7 +680,7 @@ def getAndroidRuntimeJar() {
if (androidJar.isFile()) { if (androidJar.isFile()) {
return androidJar return androidJar
} else { } 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")
} }
} }