Does Compose generate a baseline-profile by defaul...
# compose
a
Does Compose generate a baseline-profile by default if you plug the profileinstaller library even without generating your own
baseline-prof.txt
file?
c
According to this podcast I listened to last week. The answers is yes. https://adbackstage.libsyn.com/episode-183-baseline-profiles They seemed to confirm that it was additive and different libraries can ship profiles (kinda like how r8 rules work)
👍 1
a
Ok. I was just about to update my understanding. Even before I did anything about baseline profiles, the APK already have baseline profiles which probably the same when I added the profile installer.
b
It doesn’t generate a baseline profile specific to your app, but it does include a standard one for components within compose. Your app may have additional things on the hot path that you would benefit from adding to your own profile.
a
Thanks for confirming!