I have a bool resource called should_init_data
that I want to have different values for in src/main
vs src/androidTest
.
So I created it in src/main/res/values/bools.xml
. I want to override this value during androidTest
- but it's not working with a src/androidTest/res/values/bools.xml
file with that value overidden.
How do I fix this? Why is this something that the Android Gradle Plugin does not support?