I have to compile a project purchased on line. On importing it into android studio..it complained about the gradle version so i updated the distributionUrl to this dis
In my case i have found out that in app.gradle file
implementationSdkVersion 27
was there instead of
compileSdkVersion 27
so put it like below
compileSdkVersion 28
defaultConfig {
applicationId "com.kotlinpractise"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}