Sergio C.
11/15/2022, 6:12 PMAdam Brown
11/15/2022, 10:48 PMWorkManager
Foreground Workers can run for > 10 minutes, but the documentation mentions that Expedited jobs (which also present a foreground notification) should only run for "a few minutes". Does anyone know if this is enforced? Is there a 3 minute or similar time limit on Expedited Workers? I would like to expedite a long running Worker as it's initiated in response to a user interaction, but the Worker may have to run for > 10 minutesstack
11/16/2022, 8:47 AMSlackbot
11/17/2022, 6:08 AMMassimo Canonico
11/17/2022, 7:09 AMMassimo Canonico
11/17/2022, 7:09 AMAmrJyniat
11/17/2022, 8:20 AMval list = listOf<Pair<Int, Int>>()
val (firstList, secondList) = ?? //how to do the mapping on the list here
Abdulaziz Mohammed
11/17/2022, 11:28 AMZaki Shaikh
11/17/2022, 12:11 PMEran Boudjnah
11/17/2022, 7:02 PMdebug
and a release
build types.
The app module is a plain Android module.
We have a second module that's a KMP module.
Every dependency from the KMP module shows in red in the app module.
I fixed it by replacing
androidMain {
dependsOn(commonMain)
}
with
androidDebug {
dependsOn(commonMain)
}
androidRelease {
dependsOn(commonMain)
}
I'm wondering why this works. Is something wrong with my configuration, is this the expected behaviour, or...?Rafael Costa
11/17/2022, 7:20 PM<http://android.net|android.net>.Uri#encode(String)
adapt it a little bit maybe use Kotlin as well. I'm terrible at this license stuff 😅vesp
11/17/2022, 7:57 PMStateFlow
and SharedFlow
? I can't for the life of me understand this concept and when to use one over the other.Gordon
11/18/2022, 6:28 AMDINESH S
11/18/2022, 8:44 AMSlackbot
11/18/2022, 10:32 AMAbdulaziz Mohammed
11/18/2022, 11:02 AMHyper Nova
11/18/2022, 2:23 PMLaunched Effect.
So everything is working fine but just the issue is if I try to rapidly switch between team pages then the value of slug is getting glitched.
Like it is being passed properly through nav args but Ig the re-composition of screen/composable is causing abnormal changes in slug value.
I'm not sure what's the issue and I need help figuring it out.Slackbot
11/18/2022, 8:23 PMbrian
11/19/2022, 12:07 PMbrian
11/19/2022, 12:25 PMABRAR WIRYAWAN
11/20/2022, 2:09 AM@Parcelize
class SomeParcelableClass(
var foo: String
) : Parcelable {
@Transient
var bar: String? = null // warning here after removing KAE
}
KotlinLeaner
11/21/2022, 9:34 AMAmrJyniat
11/21/2022, 11:51 AMextraAtt
I got a compiler error, how do I deal with that?
data class MyClass(val a: Int, val b: int, val extraAtt: Int)
------------
@Query("select a, b from tableName")
fun getData(): List<MyClass>
@ignore
doesn't help meKashismails
11/21/2022, 4:28 PMNaresh
11/22/2022, 6:31 AMJakub Neukirch
11/22/2022, 7:34 AMSlackbot
11/22/2022, 7:59 AMSlackbot
11/22/2022, 12:45 PMNebil
11/22/2022, 2:04 PMSlackbot
11/22/2022, 3:59 PMSlackbot
11/22/2022, 3:59 PM