12 lines
378 B
Groovy
12 lines
378 B
Groovy
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
buildscript {
|
||
|
apply from: file("common.gradle")
|
||
|
dependencies {
|
||
|
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
|
||
|
}
|
||
|
}
|
||
|
plugins {
|
||
|
id 'com.android.application' version '7.3.1' apply false
|
||
|
id 'com.android.library' version '7.3.1' apply false
|
||
|
}
|