Disable isDebuggable in debug builds
I don't know if there are any side-effects, but this is the only way to make Jetpack Compose not unusably laggy in debug builds that I found
This commit is contained in:
parent
0532b65cea
commit
b997a7cb62
@ -43,6 +43,9 @@ android {
|
|||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
|
// Jetpack Compose is unusably laggy in debug builds, it's ridiculous
|
||||||
|
// This somehow seems to resolve that issue.
|
||||||
|
isDebuggable = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
configurations.all {
|
configurations.all {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user