We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47ead0 commit f6b1e45Copy full SHA for f6b1e45
core-tests-android/build.gradle.kts
@@ -20,12 +20,12 @@ dependencies {
20
21
android {
22
namespace = "com.powersync.testing"
23
- compileSdk = 34
+ compileSdk = libs.versions.android.compileSdk.get().toInt()
24
25
defaultConfig {
26
applicationId = "com.powersync.testing"
27
- minSdk = 24
28
- targetSdk = 35
+ minSdk = libs.versions.android.minSdk.get().toInt()
+ targetSdk = libs.versions.android.targetSdk.get().toInt()
29
versionCode = 1
30
versionName = "1.0"
31
0 commit comments