From 0b1bb4174ec2827c6f5b52c87d9704dc6cec693a Mon Sep 17 00:00:00 2001 From: Shane Rosenthal Date: Fri, 27 Mar 2026 23:56:34 -0400 Subject: [PATCH] Lower Android min SDK requirement from 33 to 26 The foreground service Kotlin code is already guarded with Build.VERSION.SDK_INT checks for API 34 features (shortService type). The foregroundServiceType attribute in the manifest is ignored on older devices. API 26 is the true minimum needed for startForegroundService and notification channels, both of which are already guarded. --- nativephp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nativephp.json b/nativephp.json index 1079d7a..2a7f254 100644 --- a/nativephp.json +++ b/nativephp.json @@ -23,7 +23,7 @@ ], "android": { - "min_version": 33, + "min_version": 26, "permissions": [ "android.permission.CAMERA", "android.permission.RECORD_AUDIO",