mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
build.gradle: Improve android API exception message
This commit is contained in:
parent
9d626bf787
commit
5fd638545d
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue