1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-06-16 00:24:53 +02:00
dandelion/app/build.gradle

77 lines
2.2 KiB
Groovy
Raw Normal View History

2016-03-03 17:46:31 +01:00
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
2016-03-03 17:46:31 +01:00
android {
2016-07-04 14:12:45 +02:00
compileSdkVersion 24
2016-07-31 15:16:22 +02:00
buildToolsVersion "24.0.1"
2016-03-03 17:46:31 +01:00
defaultConfig {
2016-03-29 19:38:50 +02:00
applicationId "com.github.dfa.diaspora_android"
2016-08-06 22:53:20 +02:00
minSdkVersion 17
2016-07-04 14:12:45 +02:00
targetSdkVersion 24
2016-09-20 21:26:23 +02:00
versionCode 8
versionName "0.1.6"
2016-03-03 17:46:31 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2016-07-27 21:54:54 +02:00
lintOptions {
disable 'MissingTranslation'
}
2016-08-14 12:14:10 +02:00
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(
output.outputFile.parent, "diasporaAndroid__${variant.versionName}__.apk")
}
}
2016-03-03 17:46:31 +01:00
}
dependencies {
2016-05-05 17:42:29 +02:00
// Sub-Projects
//compile project(':subprojectFromRoot')
// Jars
2016-03-03 17:46:31 +01:00
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
2016-05-05 17:42:29 +02:00
// Android standard libs
2016-09-11 11:57:42 +02:00
compile 'com.android.support:appcompat-v7:24.2.0'
2016-09-20 19:52:42 +02:00
compile 'com.android.support:design:24.1.0' //Don't u dare to upd8!
2016-09-11 11:57:42 +02:00
compile 'com.android.support:support-v4:24.2.0'
2016-09-20 19:52:42 +02:00
compile "com.android.support:customtabs:24.2.0"
2016-05-05 17:42:29 +02:00
// More libraries
compile 'com.jakewharton:butterknife:8.0.1'
compile 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
compile 'info.guardianproject.netcipher:netcipher-webkit:2.0.0-alpha1'
apt 'com.jakewharton:butterknife-compiler:8.0.1'
}
task copyRepoFiles(type: Copy) {
String[] copyFiles = ["README.md", "LICENSE.md", "CHANGELOG.md"]
from rootProject.files(copyFiles)
into 'src/main/res/raw'
rename { String fileName ->
fileName.replace(fileName, fileName.toLowerCase())
}
// Filter Contributors file
from(rootProject.file("CONTRIBUTORS.txt")) {
into '.' // Target already changed to 'src/main/res/raw'
rename { String fileName ->
fileName.replace(fileName, fileName.toLowerCase())
}
filter { line ->
(line.toString().matches("..l>>.*") || line.toString().startsWith("## 99l CONTRIBUTORS")) ? null : line.toString().trim().replaceAll(" \\(.*\\)", "")
}
}
2016-03-03 17:46:31 +01:00
}
tasks.copyRepoFiles.execute()