1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 14:22:05 +01: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()) {
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")
}
}