I just read some comment in facebook saying that t...
# compose
a
I just read some comment in facebook saying that threads an instagram app, is made with compose, is this valid information?
👌 6
👍 1
e
in fact it looks like they shipped with the Compose tooling left in the app, including PreviewActivity…
c
That's weird. Isn't that supposed to compile itself out? Or are they doing weird apk dex stuff again?
f
The developers claim is mostly compose saying that the main “surface” is compose. Someone decompiled the apk and also found react native, so a little bit of everything
e
Meta product likely means Buck (or Buck2) build which doesn't have flavors/variants (by default), so there's no separation between debug/release dependencies (by default)
@Preview
should be tree-shaken out (as long as nothing from entry points transitively references it) but
PreviewActivity
itself is in
AndroidManifest.xml
so it's considered an entry point
r
@francisco They explained they share some stuff like login with other apps (IG). But the main experience is Compose
f
NICE