From 6f441dd227a0fb1e0914abb05b7ae725cc922d93 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 7 May 2024 12:23:20 -0700 Subject: [PATCH] Update orderfile sample to targetSdk 34. Fixes the lint task that's complaining that this app wouldn't be allowed in Play. --- orderfile/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orderfile/app/build.gradle b/orderfile/app/build.gradle index 8b40e6bd8..3aef2d16a 100644 --- a/orderfile/app/build.gradle +++ b/orderfile/app/build.gradle @@ -4,12 +4,12 @@ plugins { } android { - compileSdk 31 + compileSdk 34 defaultConfig { applicationId "com.example.orderfiledemo" minSdk 21 - targetSdk 31 + targetSdk 34 versionCode 1 versionName "1.0" ndkVersion '25.2.9519653'