From 321ca21c09d8340f6601209d8b3c46b8fafdabbe Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Tue, 2 Apr 2024 20:06:19 +0200 Subject: [PATCH 1/2] bump compileSdk to 34 --- sqflite/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqflite/android/build.gradle b/sqflite/android/build.gradle index 28870010..e3b88480 100644 --- a/sqflite/android/build.gradle +++ b/sqflite/android/build.gradle @@ -34,7 +34,7 @@ android { if (project.android.hasProperty("namespace")) { namespace 'com.tekartik.sqflite' } - compileSdkVersion 33 + compileSdkVersion 34 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 From 56964b634a42a8c8e3a37c127f62eec84d8528b1 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Tue, 2 Apr 2024 20:09:15 +0200 Subject: [PATCH 2/2] migrate to `compileSdk` and `minSdk` --- sqflite/android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqflite/android/build.gradle b/sqflite/android/build.gradle index e3b88480..b393caed 100644 --- a/sqflite/android/build.gradle +++ b/sqflite/android/build.gradle @@ -34,7 +34,7 @@ android { if (project.android.hasProperty("namespace")) { namespace 'com.tekartik.sqflite' } - compileSdkVersion 34 + compileSdk 34 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -42,7 +42,7 @@ android { } defaultConfig { - minSdkVersion 16 + minSdk 16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } lintOptions {