1# global settings for projects 2kotlinVersion = 1.0.0 3extensionsVersion = 1.1 4# we use a public plugin so that it does not need data binding while compiling library 5androidPublicPluginVersion= 1.5.0 6# java versions for the code that runs on the device 7javaTargetCompatibility = 1.6 8javaSourceCompatibility = 1.6 9# java versions for the code that runs on the host machine 10compilerJavaTargetCompatibility = 1.8 11compilerJavaSourceCompatibility = 1.8 12buildToolsVersion = 22.0.1 13compileSdkVersionStr = 23 14prebuildFolderName=prebuilds 15group=com.android.databinding 16testGroup=com.android.databinding.test 17eapOutFolderName=data-binding-eap 18licenseName=The Apache Software License, Version 2.0 19licenseUrl=http://www.apache.org/licenses/LICENSE-2.0.txt 20licenseDistribution=repo 21 22# use these two properties to change the target of rebuildRepo task. 23# e.g. If the maven repo folder is at /Volumes/ssd/src/maven-repo 24# mavenRepoAbsolutePath is /Volumes/ssd/src and mavenRepoName is maven-repo 25mavenRepoAbsolutePath=. 26mavenRepoName=maven-repo 27internalPrebuiltsRepoName=internal-prebuilts 28extraPluginsVersion=1.1 29androidGradlePluginOutRepo=out/repo 30