This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
controldna/build.gradle

36 lines
648 B
Groovy

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8.3'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
maven {
url "http://4thline.org/m2"
}
}
dependencies {
compile 'com.android.support:appcompat-v7:18.0.+'
compile 'com.android.support:mediarouter-v7:18.0.+'
compile 'org.teleal.cling:cling-core:1.0.5'
compile 'org.teleal.cling:cling-support:1.0.5'
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
buildTypes {
debug {
packageNameSuffix ".debug"
}
}
}