blob: d092eaa59808f5b151ff23f043582a8fb8d3f849 [file] [log] [blame]
buildscript {
repositories {
jcenter()
if (System.getenv("MAVEN_URL") != null) {
maven {url System.getenv("MAVEN_URL")}
}
}
dependencies {
classpath 'com.android.tools.build:gradle:0.2001` // invalid plugin number
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
versionCode 10
versionName "1.0"
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
}
}
}