From b174c1ddbb28e40023424ccb523b5de20e8513ab Mon Sep 17 00:00:00 2001 From: David Beentjes <75703724+unlocdavid@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:46:45 +0200 Subject: [PATCH 1/2] Restore Android SDK versions config items --- config/nativephp.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/nativephp.php b/config/nativephp.php index 870b070..af837e9 100644 --- a/config/nativephp.php +++ b/config/nativephp.php @@ -220,6 +220,9 @@ | target_sdk: The SDK version your app is designed and tested for | */ + 'compile_sdk' => env('NATIVEPHP_ANDROID_COMPILE_SDK', 36), + 'min_sdk' => env('NATIVEPHP_ANDROID_MIN_SDK', 33), + 'target_sdk' => env('NATIVEPHP_ANDROID_TARGET_SDK', 36), /* |-------------------------------------------------------------------------- From 187a4c0f65d486ab78b194a437337cf7ff051441 Mon Sep 17 00:00:00 2001 From: David Beentjes Date: Fri, 3 Jul 2026 11:13:08 +0200 Subject: [PATCH 2/2] Fix formatting --- config/nativephp.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/nativephp.php b/config/nativephp.php index af837e9..a4be1c7 100644 --- a/config/nativephp.php +++ b/config/nativephp.php @@ -220,9 +220,9 @@ | target_sdk: The SDK version your app is designed and tested for | */ - 'compile_sdk' => env('NATIVEPHP_ANDROID_COMPILE_SDK', 36), - 'min_sdk' => env('NATIVEPHP_ANDROID_MIN_SDK', 33), - 'target_sdk' => env('NATIVEPHP_ANDROID_TARGET_SDK', 36), + 'compile_sdk' => env('NATIVEPHP_ANDROID_COMPILE_SDK', 36), + 'min_sdk' => env('NATIVEPHP_ANDROID_MIN_SDK', 33), + 'target_sdk' => env('NATIVEPHP_ANDROID_TARGET_SDK', 36), /* |--------------------------------------------------------------------------