Finally able to resolve the issue by 1. Deleting ...
# android
r
Finally able to resolve the issue by 1. Deleting root project
build
folder 2. And explicitly defined
Copy code
buildscript {
		ext.kotlin_version = "1.1.1"
		...
	}
Previously(
1.1.0
) I'd used to run with following config without kotlin_version defined explicitly. Now in 1.1.1 it throws error.
Copy code
apply from: "config/dependencies.gradle"
	apply plugin: "kotlin"

	buildscript {	 
	  repositories {
		jcenter()
	  }

	  dependencies {
		apply from: "config/dependencies.gradle"
		classpath compileDependencies.gradle
		classpath compileDependencies.kotlinPlugin
		classpath compileDependencies.realmPlugin
	  }
	}