fix compileSdkVersion check in sshauthentication

This commit is contained in:
Dominik Schürmann 2021-03-17 10:24:35 +01:00
parent 7a74904aac
commit 0f1902fd4b
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
android {
if (project.hasProperty('rootProject.ext.compileSdkVersion')) {
if (project.hasProperty('compileSdkVersion')) {
compileSdkVersion rootProject.ext.compileSdkVersion
} else {
compileSdkVersion 28