fix: Autofill refactoring

This commit is contained in:
J-Jamet
2025-09-26 21:42:22 +02:00
parent 76c20263f7
commit dd0d85e54e
22 changed files with 1008 additions and 620 deletions

View File

@@ -39,7 +39,7 @@ inline fun <reified T : Serializable> Intent.getSerializableExtraCompat(key: Str
else -> @Suppress("DEPRECATION") getSerializableExtra(key) as? T
}
inline fun <reified E : Parcelable> Intent.putParcelableList(key: String?, list: MutableList<E>) {
inline fun <reified E : Parcelable> Intent.putParcelableList(key: String?, list: List<E>) {
putExtra(key, list.toTypedArray())
}