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

61 lines
1.4 KiB
Groovy

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.0+'
classpath 'com.alexvasilkov:android_sign:0.2'
}
}
apply plugin: 'android'
apply plugin: 'android_sign'
repositories {
mavenCentral()
maven {
url "http://4thline.org/m2"
}
}
dependencies {
compile 'com.android.support:appcompat-v7:19.1.+'
compile 'com.android.support:mediarouter-v7:19.1.+'
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"
// Caused by cling, because they apparently include APIs for other platforms.
lintOptions {
disable 'InvalidPackage'
}
signingConfigs {
release {
// Android Studio does not pass environment variables.
// This means you have to use the command line for release builds.
def ks = System.getenv("KEYSTORE")
def ka = System.getenv("KEY_ALIAS")
if (ks != null && ka != null) {
storeFile file(ks)
keyAlias ka
}
}
}
buildTypes {
debug {
packageNameSuffix ".debug"
debuggable true
}
release {
signingConfig signingConfigs.release
}
}
}