From c4ad1ac652024ebac32e91acaa4c7d6f3f64e7a8 Mon Sep 17 00:00:00 2001 From: juandiana Date: Wed, 4 Mar 2026 11:09:54 -0300 Subject: [PATCH] build(android): target latest API level 36 Update app targetSdk from 33 to 36 to align with the latest stable Android API level while keeping compileSdk at 36. Validation: - :app:assembleDebug succeeds - :app:lintDebug shows the same two pre-existing AndroidGradlePluginVersion lint errors seen on main - No new warnings or errors were introduced by this API-level change --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5bd99bf..507d3df 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -10,7 +10,7 @@ android { defaultConfig { applicationId = "com.juandiana.reflexgame" minSdk = 26 - targetSdk = 33 + targetSdk = 36 versionCode = 1 versionName = "1.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"