2016-03-03 17:46:31 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-06-02 13:58:09 +02:00
|
|
|
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-08-28 17:54:35 +02:00
|
|
|
versionCode 7
|
|
|
|
versionName "0.1.6-dev"
|
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'
|
|
|
|
compile 'com.android.support:design:24.2.0'
|
|
|
|
compile 'com.android.support:support-v4:24.2.0'
|
2016-05-05 17:42:29 +02:00
|
|
|
|
|
|
|
// More libraries
|
2016-06-02 13:58:09 +02:00
|
|
|
compile 'com.jakewharton:butterknife:8.0.1'
|
2016-08-23 14:36:03 +02:00
|
|
|
compile 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
|
|
|
|
compile 'info.guardianproject.netcipher:netcipher-webkit:2.0.0-alpha1'
|
2016-06-02 13:58:09 +02:00
|
|
|
apt 'com.jakewharton:butterknife-compiler:8.0.1'
|
2016-08-27 15:17:02 +02:00
|
|
|
}
|
|
|
|
|
2016-06-02 13:58:09 +02:00
|
|
|
|
2016-08-27 15:17:02 +02:00
|
|
|
task copyRepoFiles(type: Copy) {
|
2016-08-27 16:40:16 +02:00
|
|
|
String[] copyFiles = ["README.md", "LICENSE.md", "CHANGELOG.md"]
|
2016-08-27 15:17:02 +02:00
|
|
|
from rootProject.files(copyFiles)
|
|
|
|
into 'src/main/res/raw'
|
|
|
|
rename { String fileName ->
|
|
|
|
fileName.replace(fileName, fileName.toLowerCase())
|
|
|
|
}
|
2016-08-27 16:40:16 +02:00
|
|
|
|
|
|
|
// Filter Contributors file
|
2016-08-29 22:16:45 +02:00
|
|
|
from(rootProject.file("CONTRIBUTORS.txt")) {
|
2016-08-27 16:40:16 +02:00
|
|
|
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-08-27 15:17:02 +02:00
|
|
|
}
|
2016-08-27 16:40:16 +02:00
|
|
|
|
2016-03-03 17:46:31 +01:00
|
|
|
}
|
2016-08-29 22:16:45 +02:00
|
|
|
tasks.copyRepoFiles.execute()
|