From db4c86b195494019d81d1645e2fe9c2952a760bb Mon Sep 17 00:00:00 2001 From: Abdullah Faheem Date: Sun, 29 Jun 2025 23:23:20 +0500 Subject: [PATCH] fix: migrated from kotlin-android-extensions to kotlin-parcelize in android build.gradle for compatibility with latest AGP and Kotlin --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index fa6963f8..4d243c37 100755 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,7 +20,7 @@ buildscript { apply plugin: 'com.android.library' apply plugin: 'kotlin-android' -apply plugin: 'kotlin-android-extensions' +apply plugin: 'kotlin-parcelize' def DEFAULT_COMPILE_SDK_VERSION = 28 def DEFAULT_BUILD_TOOLS_VERSION = "28.0.3"