Hi folks, I'm trying to create baseline profile fo...
# android
t
Hi folks, I'm trying to create baseline profile for my app. I'm using BaselineProfileRule and collect() function as same as the documentation.
Copy code
@RunWith(AndroidJUnit4::class)
@LargeTest
class BaselineProfileGenerator {
    @get:Rule
    val rule = BaselineProfileRule()
    
    @Test flow1() = rule.collect() /../
    @Test flow2() = rule.collect() /../
    /../
}
Question: If I have many flows to collect baseline profiles like the above, will the output baseline profiles be merged ? If not, how can I achieve it?
not kotlin but kotlin colored 2
c
This is a workspace of the Kotlin programming language. Your general question should be asked somewhere else - you can find some resources in the channel description.
t
Thank you for your infomation