Skip to content
Advertisement

Robolectric Resources$NotFoundException can’t find library (aar) resources

I have looked quite a bit for a solution for this (few days) and have not come to a solution yet. Basically, for my unit tests using Robolectric, I keep getting Resources$NotFoundException when trying to inflate resources from a dependency (pulled in as an aar). Heres the setup:

build.gradle (project level)

JavaScript

build.gradle (app)

JavaScript

I am using distributionUrl=https://services.gradle.org/distributions/gradle-4.10.3-all.zip in my gradle-wrapper.properties

and my gradle properties:

JavaScript

Then its the default blank activity template that comes in Android Studio 4.1.2. So the only thing touched is the main main activity:

JavaScript

So the issue is with the MyOtherView and when it inflates the view inside this class. So in MyOtherView it throws the exception in the test when it hits this line:

JavaScript

As for the test itself:

JavaScript

I’ve tried invalidating/restarting, clearing cache, I’ve tried different versions of gradle build tools and with the distribution. Everything I read shows to just have the includeAndroidResources flag set to true but I have that, and I have already tried with/without enableUnitTestBinaryResources as well as enableAapt2

ANY help is appreciated since I have been killing myself trying to get this working. I would think its something simple but… I’m lost here. Its like it can’t see the dependency (com.me.android:thewidget:4.0.0, MyOtherView) resources at all.

Advertisement

Answer

Alright all, I figured it out (actually a colleague did). I added the robolectric.properties file to the src/test/resources area. in the file I had to put:

JavaScript

I hope this helps someone down the road.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement