Leejjon
Leejjon

Reputation: 756

Unit test configuration broke in Android Studio 3.1

I updated to Android Studio 3.1 and as suggested by Android Studio also:

I am using the JDK 8.

My previous Android Studio build configuration "Core tests" which just ran all tests in one module now says:

Could not execute build using Gradle distribution 'https://services.gradle.org/distributions/gradle-4.5.1-all.zip'.

My set up: enter image description here

The exact exception as shown in the ide: enter image description here

My full source code: https://github.com/Leejjon/BluffPoker

Apparently the same Nullpointer occurs when running this on the command line: gradle :core:test This command will fail with the same NullPointer. Doing a test on the root project like gradle test will run fine. I can also deploy the app on my Android phone. This is probably not IntelliJ related but the Android gradle plugin 3.1.0 breaking the ability to run the gradle :core:test command.

TLDR: Running any gradle task in the core module like gradle :core:sometask seems to result in a null pointer since Android gradle plugin 3.1.0.

My workaround for now is to use the gradle test command to run all tests in all modules and study the generated html pages by junit (found in BluffPoker\core\build\reports\tests\test\index.html) to troubleshoot whether they are failing.

Upvotes: 3

Views: 2094

Answers (3)

David Pisoni
David Pisoni

Reputation: 3437

As this bug commenter pointed out: https://issuetracker.google.com/issues/77605097#comment7

disabling the "configure on demand" feature of Gradle (in Settings: Build, Execution, and Deployment: Compiler) is a viable workaround.

Since I did this my Unit tests are all working again.

Upvotes: 3

Leejjon
Leejjon

Reputation: 756

Solution from kekkou of the libgdx forums: http://www.badlogicgames.com/forum/viewtopic.php?f=11&t=27639&p=109249#p109249

His solution is: Move the project(':android') {} block in root build.gradle into android\build.gradle.

This makes all commands work again. I did not find any downsides.

The commit for this fix on my project: https://github.com/Leejjon/BluffPoker/commit/d10deb090c2d80e641d733efdaa85f99c0a9fe2f

Upvotes: 1

Whitebear
Whitebear

Reputation: 1791

in your gradle-wrapper.properties, try using:

distributionUrl=https://services.gradle.org/distributions/gradle-4.3-rc-2-all.zip

Upvotes: 0

Related Questions