From 89d721395c8d9d228cccdbcda53822e8f44cee93 Mon Sep 17 00:00:00 2001 From: Aaron Wood Date: Sun, 11 Sep 2022 11:48:23 -0700 Subject: [PATCH 1/2] Target SDK 31 for now to fix broken Android 12/13 devices which break on host scans due to SELinux blocking nlmsg_getneigh --- app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index ceda87f..6bb31fc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,12 +15,12 @@ sonarqube { android { viewBinding.enabled = true - compileSdkVersion 33 + compileSdkVersion 31 buildToolsVersion '30.0.3' defaultConfig { minSdkVersion 19 - targetSdkVersion 33 + targetSdkVersion 31 versionCode 66 versionName "2.4.4" applicationId "com.aaronjwood.portauthority" @@ -77,7 +77,7 @@ android { dependencies { implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'androidx.appcompat:appcompat:1.5.0' + implementation 'androidx.appcompat:appcompat:1.4.2' implementation 'com.squareup.okhttp3:okhttp:3.14.9' // Anything past 3.12.x will break our Android 4 support! implementation 'org.minidns:minidns-hla:1.0.2' debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1' From 9dbc43ebe454195b1610eee9b7473a83d400d48b Mon Sep 17 00:00:00 2001 From: Aaron Wood Date: Sun, 11 Sep 2022 11:49:48 -0700 Subject: [PATCH 2/2] Bump versions --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6bb31fc..b719269 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,8 +21,8 @@ android { defaultConfig { minSdkVersion 19 targetSdkVersion 31 - versionCode 66 - versionName "2.4.4" + versionCode 67 + versionName "2.4.5" applicationId "com.aaronjwood.portauthority" setProperty("archivesBaseName", "PortAuthority-$versionName") externalNativeBuild {