From 0f1902fd4bad63146c38568cc36f3c4364f8ffc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Wed, 17 Mar 2021 10:24:35 +0100 Subject: [PATCH] fix compileSdkVersion check in sshauthentication --- sshauthentication-api/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshauthentication-api/build.gradle b/sshauthentication-api/build.gradle index 9c4781de2..fede9303b 100644 --- a/sshauthentication-api/build.gradle +++ b/sshauthentication-api/build.gradle @@ -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