In the case of creating app-release.aab from the existing location of the sample baselineProfiles in release/generated/baselineProfilesbaseline.prof size is 5.9k
In the case of creating app-release.aab after moving the same file to main/generated/baselineProfilesbaseline.prof size is 4.8k
In the case of automatically generating the baseline profile file with the following option settings and including it when creating the aab
The size of baseline.prof is 4.8k, which is the same size as when the file is placed in the main/generated/baselineProfiles directory.
Even though it is the same baseline-prof.txt, the size of the converted baseline.prof inside the aab is different, with 5.9k for release and 4.8k for the case included in main. I am curious about the reason for this difference. And where should I put the generated baseline-prof.txt file to use in my service?
In the case of creating
app-release.aab
from the existing location of the sample baselineProfiles inrelease/generated/baselineProfiles
baseline.prof
size is 5.9kIn the case of creating
app-release.aab
after moving the same file tomain/generated/baselineProfiles
baseline.prof
size is 4.8kIn the case of automatically generating the baseline profile file with the following option settings and including it when creating the aab The size of baseline.prof is 4.8k, which is the same size as when the file is placed in the
main/generated/baselineProfiles
directory.Even though it is the same
baseline-prof.txt
, the size of the converted baseline.prof inside the aab is different, with 5.9k forrelease
and 4.8k for the case included inmain
. I am curious about the reason for this difference. And where should I put the generatedbaseline-prof.txt
file to use in my service?