compose: SearchScreen: Use random UUID as keys

Server can send same package again as we are filtering through different bundles. Keys are basically
packageName's hashcode, so they can end up as being similar and crash the app.

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2026-04-08 16:08:02 +08:00
parent f9ca15eea4
commit a1d15f16bd
2 changed files with 4 additions and 3 deletions

View File

@@ -44,7 +44,8 @@ kotlin {
"androidx.compose.material3.ExperimentalMaterial3ExpressiveApi",
"androidx.compose.foundation.layout.ExperimentalLayoutApi",
"androidx.compose.material3.adaptive.ExperimentalMaterial3AdaptiveApi",
"coil3.annotation.ExperimentalCoilApi"
"coil3.annotation.ExperimentalCoilApi",
"kotlin.uuid.ExperimentalUuidApi"
)
}
}