From ce71768d570a61ea2c4ef6fd024557c0804cd2d6 Mon Sep 17 00:00:00 2001 From: Orkun Duman Date: Thu, 12 Dec 2024 01:37:35 -0500 Subject: [PATCH] Downgrade Android datastore --- android/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index ae5a3974..fa72c410 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -56,8 +56,10 @@ android { } dependencies { - implementation 'androidx.datastore:datastore:1.1.1' - implementation 'androidx.datastore:datastore-preferences:1.1.1' + //noinspection v1.1.1 has a bug that prevents native_debug_symbol generation + // see: https://issuetracker.google.com/u/0/issues/342671895 + implementation 'androidx.datastore:datastore:1.0.0' + implementation 'androidx.datastore:datastore-preferences:1.0.0' //noinspection GradleDependency: 1.7+ requires Kotlin 2 implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3' } \ No newline at end of file