• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3buildscript {
4    ext.kotlin_version = '1.2.21'
5
6    repositories {
7        google()
8        jcenter()
9        mavenLocal()
10    }
11    dependencies {
12        classpath 'com.android.tools.build:gradle:3.0.1'
13        classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.5"
14        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
15
16        // NOTE: Do not place your application dependencies here; they belong
17        // in the individual module build.gradle files
18    }
19}
20
21allprojects {
22    repositories {
23        google()
24        jcenter()
25        mavenLocal()
26    }
27}
28