Issue
I have a Android Studio project with some test. The test have his own res/drawable folder with some images that are needed to run the test. My question is...
Those images are included when I make the apk or will be omitted?
Solution
By default they will be omitted as long as you put the resources in the correct folders, that is "src/test/res/drawable".
Remember that it's possible to customize source/test paths and even have more than one path for each of these, so beware of customizations in your build.gradle files!
Answered By - Mike Laren
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.