22 lines
405 B
Groovy
22 lines
405 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter {
|
|
url "http://jcenter.bintray.com/"
|
|
}
|
|
maven {
|
|
url 'https://maven.google.com/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:::ANDROID_GRADLE_PLUGIN::'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
|
|
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
|
|
}
|