1buildscript {
2    repositories {
3        mavenCentral()
4    }
5    dependencies {
6        classpath 'com.android.tools.build:gradle:ARTIFACT_VERSION'
7    }
8}
9apply plugin: 'PLUGIN'
10
11android {
12    compileSdkVersion 'TARGET'
13    buildToolsVersion 'BUILD_TOOL_REV'
14
15    buildTypes {
16        release {
17            runProguard false
18            proguardFile getDefaultProguardFile('proguard-android.txt')
19        }
20    }
21}
22