nikhi1

Results 5 comments of nikhi1

To add to, my fragmentHideStrategy was DETACH_ON_NAVIGATE_HIDE_ON_SWITCH but when I change it to DETACH, the fragments are attach/detach correctly.

Yes, the clearstack and replaceFragment are being called sequentially and immediately. The version of FragNav we are using is 3.1.0.

I did something like this just a while back. I used the [this](https://plugins.gradle.org/plugin/com.hiya.jacoco-android) plugin to generate Jacoco reports. This would be a small change. I did it in my own...

Use `android { defaultConfig { vectorDrawables.useSupportLibrary = true } `

Here is a better version for kotlin based DSL ``` afterEvaluate { tasks.withType().run { all { val tree = fileTree(buildDir) tree.include("**/*.ec") executionData(tree) } } }