Could not locate build.gradle used for Android project

54 Views Asked by At

When i try to build version with TestFairy Android Studio throws this error: TestFairy: Could not locate build.gradle used for Android project. Maybe one of you have been facing with this problem before and know how to fix it.

enter image description here

1

There are 1 best solutions below

0
On

remove the colon from the includes

before:

settings.gradle
include ":app"
include "CordovaLib"

after:

settings.gradle
include "app"
include "CordovaLib"