DEV Community

Server Broad
Server Broad

Posted on

Answer: Gradle sync failed: Cause: compileSdkVersion is not specified

You are using android support library of 27.+ so you will have to give sdk version 27 as compileSdkVersion and targetSdkVersion otherwise your project does not know for which platform your project should be built. These parameter should be given in android directory like this in build.gradle(app):

android {

Top comments (0)