spierce7
09/03/2021, 2:53 PM<app folder>/Contents/MacOS/<app name>
file. I’ve found this very useful when debugging issues in a production built applicationHalil Ozercan
09/03/2021, 9:15 PMorg.jetbrains.compose
plugin. This was unfortunate because I didn't feel right telling developers that they need to apply Desktop Compose plugin for their pure Android app just to use a library.
Luckily, this turns out to be just a dependency issue and dependencies are easily replaced in gradle before they are resolved. Adding the following configuration to Android App's build.gradle
enables the use of KMP Compose dependencies.
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group.contains('org.jetbrains.compose')) {
def groupName = details.requested.group.replace("org.jetbrains.compose", "androidx.compose")
details.useTarget(
[group: groupName, name: details.requested.name, version: details.requested.version]
)
}
}
}
Alejandro Rios
09/03/2021, 9:29 PMxxfast
09/07/2021, 5:58 AM@Preview
composable? I’ve installed Multiplatform compose plugin 1.0.0-alpha4-build331
installedFrank
09/09/2021, 11:31 AManimateContentSize
but the
finishedListener = { a: IntSize , b: IntSize ->
println("A $a , B $b")
println("DONE")
// animate = false
}
Seems to get never called - there are no println on the console and breakpoints don’t stop.Frank
09/09/2021, 11:36 AMval twenSpec = TweenSpec<IntSize>(delay = 1000, durationMillis = 3000 , easing = LinearOutSlowInEasing)
But the durationMillis seems to be ignored, because the size change happens instantly.Pavle Joksovic
09/10/2021, 8:35 AMRafs
09/12/2021, 9:05 PMAlonso Ato Neyra
09/13/2021, 5:21 AMAlonso Ato Neyra
09/13/2021, 5:22 AMAlonso Ato Neyra
09/13/2021, 5:23 AMStefan Oltmann
09/16/2021, 8:10 AMpackageDmg
/ packageMsi
and I'm looking for a sample how I must modify my build.gradle.kts
to include a obfuscation step. I don't find an answer to that.
I think it would be super nice if the official template would just contain such a step because it's a hard requirement for anybody who ships business software to customers.Kirill Grouchnikov
09/16/2021, 7:27 PMFrank
09/17/2021, 7:38 AMFrank
09/21/2021, 5:21 PMKirill Grouchnikov
09/22/2021, 8:12 PMdarkmoon_uk
09/27/2021, 2:19 PMMahir Chowdhury
09/28/2021, 3:41 AMMahir Chowdhury
09/28/2021, 3:42 AMKirill Grouchnikov
09/29/2021, 7:24 PMSrSouza
10/04/2021, 6:04 PMAnatame
10/06/2021, 6:44 PMAnatame
10/06/2021, 6:45 PMeygraber
10/08/2021, 4:18 AMsingleWindowApplication
I get the signatures with /* = compiled code */
darkmoon_uk
10/10/2021, 11:54 AMcorneil
10/12/2021, 9:27 AMStateFlow
and SharedFlow
very easy to use. I have a project that illustrates the use. https://github.com/open-jumpco/kfsm-mpp-compose-trafficWaqas Tahir
10/13/2021, 3:00 PMWaqas Tahir
10/13/2021, 3:01 PMWaqas Tahir
10/13/2021, 3:04 PMWaqas Tahir
10/13/2021, 4:16 PM