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

37 lines
648 B
Groovy
Raw Normal View History

2013-12-30 01:17:13 +00:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8.3'
2013-12-30 01:17:13 +00:00
}
}
apply plugin: 'android'
repositories {
mavenCentral()
maven {
url "http://4thline.org/m2"
}
}
2013-12-30 01:17:13 +00:00
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'
2013-12-30 01:17:13 +00:00
}
android {
compileSdkVersion 19
2014-05-01 15:42:22 +00:00
buildToolsVersion "19.0.3"
2013-12-30 01:17:13 +00:00
2014-04-28 07:14:35 +00:00
buildTypes {
debug {
packageNameSuffix ".debug"
}
}
2013-12-30 01:17:13 +00:00
}