Android studio emulator SDK 23 not building

I’ve been trying to use Travis CI with Android Studio but I can’t get the emulator to work, I don’t know what else i need to declare, does anybody have experience with android emulators and Travis CI?

https://travis-ci.com/github/Sarl98/Workmates/builds/225662307

Try adding this into your Gradle script:

android {
    lintOptions {
        abortOnError false
    }
}
1 Like