I wanted to use the resource folder in my test project with Android Studio to store internationalized strings that I will only use in my user interface tests.
But since I can create a folder /app/src/androidTest/res , I cannot create a resource folder, such as the "values" in it.
Android Studio says that this folder already exists. It exists, but in my main project under /app/src/main/res.
So, can I create resources that are available only for my test project, and how, or am I completely wrong, and the reason I cannot do this is because I should not do this?
Thanks.
source share