2013-12-30 01:17:13 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-05-06 22:07:21 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:1.2.2'
|
2014-05-10 20:01:21 +00:00
|
|
|
classpath 'com.alexvasilkov:android_sign:0.2'
|
2013-12-30 01:17:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-10 20:01:21 +00:00
|
|
|
apply plugin: 'android_sign'
|
2015-05-06 22:07:21 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2013-12-30 01:17:13 +00:00
|
|
|
|
2014-04-23 18:38:45 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url "http://4thline.org/m2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-30 01:17:13 +00:00
|
|
|
dependencies {
|
2014-05-14 21:27:20 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:19.1.+'
|
|
|
|
compile 'com.android.support:mediarouter-v7:19.1.+'
|
2016-01-03 13:36:12 +00:00
|
|
|
compile 'org.fourthline.cling:cling-core:2.1.0'
|
|
|
|
compile 'org.fourthline.cling:cling-support:2.1.0'
|
|
|
|
compile 'org.eclipse.jetty:jetty-server:8.1.8.v20121106'
|
|
|
|
compile 'org.eclipse.jetty:jetty-servlet:8.1.8.v20121106'
|
|
|
|
compile 'org.eclipse.jetty:jetty-client:8.1.8.v20121106'
|
|
|
|
compile 'org.slf4j:slf4j-jdk14:1.6.1'
|
2013-12-30 01:17:13 +00:00
|
|
|
}
|
2014-05-14 21:27:20 +00:00
|
|
|
|
2013-12-30 01:17:13 +00:00
|
|
|
android {
|
|
|
|
compileSdkVersion 19
|
2015-05-06 22:07:21 +00:00
|
|
|
buildToolsVersion "19.1.0"
|
2014-05-14 21:27:20 +00:00
|
|
|
|
|
|
|
// Caused by cling, because they apparently include APIs for other platforms.
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
}
|
|
|
|
|
2016-01-03 13:36:12 +00:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/beans.xml'
|
|
|
|
exclude 'about.html'
|
|
|
|
}
|
|
|
|
|
2014-05-10 20:01:21 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-30 01:17:13 +00:00
|
|
|
|
2014-04-28 07:14:35 +00:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
2015-05-06 22:07:21 +00:00
|
|
|
applicationIdSuffix ".debug"
|
2014-05-10 20:01:21 +00:00
|
|
|
debuggable true
|
|
|
|
}
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
2014-04-28 07:14:35 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-14 21:27:20 +00:00
|
|
|
|
2013-12-30 01:17:13 +00:00
|
|
|
}
|
2014-09-30 16:59:36 +00:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
gradleVersion = '1.10'
|
|
|
|
}
|