lint fails in AboutActivity (#1001)

* Disabled `CoroutineCreationDuringComposition` in lint

Signed-off-by: Arnau Mora Gras <arnyminerz@proton.me>

* Moved disable

Signed-off-by: Arnau Mora Gras <arnyminerz@proton.me>

---------

Signed-off-by: Arnau Mora Gras <arnyminerz@proton.me>
This commit is contained in:
Arnau Mora 2024-09-04 17:46:44 +02:00 committed by GitHub
parent 6cbd71ab50
commit fc698040aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -88,6 +88,9 @@ android {
lint {
disable += arrayOf("GoogleAppIndexingWarning", "ImpliedQuantity", "MissingQuantity", "MissingTranslation", "ExtraTranslation", "RtlEnabled", "RtlHardcoded", "Typos", "NullSafeMutableLiveData")
// TODO: Remove on the next Compose release, should be fixed
// Maybe related to https://issuetracker.google.com/issues/298483892
disable += "CoroutineCreationDuringComposition"
}
packaging {