From e53cc7208dda4932a0919d08dc2f70577c9ade89 Mon Sep 17 00:00:00 2001 From: Yang Date: Wed, 26 Aug 2026 19:02:15 +1000 Subject: [PATCH] Add `minorAPiLevel = 1`. --- test-fixture/app/build.gradle.kts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test-fixture/app/build.gradle.kts b/test-fixture/app/build.gradle.kts index 57f1c7a7..af650ca4 100644 --- a/test-fixture/app/build.gradle.kts +++ b/test-fixture/app/build.gradle.kts @@ -4,7 +4,11 @@ plugins { android { namespace = "com.example.testapp" - compileSdk = 37 + compileSdk { + version = release(37) { + minorApiLevel = 1 + } + } buildToolsVersion = "37.0.0" defaultConfig {