2017-10-23 11:40:38 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2017-10-27 22:10:06 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-09-07 12:11:47 +01:00
|
|
|
apply plugin: 'findbugs'
|
2017-10-23 23:00:43 +01:00
|
|
|
|
2018-09-07 12:11:47 +01:00
|
|
|
def taskRequest = getGradle().getStartParameter().getTaskRequests().toString()
|
|
|
|
if (taskRequest.contains("Gplay") || taskRequest.contains("findbugs") || taskRequest.contains("lint")) {
|
2018-02-19 01:14:21 +00:00
|
|
|
apply from: 'gplay.gradle'
|
|
|
|
}
|
2017-10-23 11:40:38 +01:00
|
|
|
|
|
|
|
android {
|
2018-10-02 21:34:00 +01:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.0.3'
|
2017-10-23 11:40:38 +01:00
|
|
|
defaultConfig {
|
2018-01-01 10:26:31 +00:00
|
|
|
applicationId "com.nextcloud.talk2"
|
2017-11-06 19:01:53 +00:00
|
|
|
versionName version
|
2017-10-23 11:40:38 +01:00
|
|
|
minSdkVersion 21
|
2018-10-02 21:34:00 +01:00
|
|
|
targetSdkVersion 28
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-11-22 17:02:25 +00:00
|
|
|
versionCode 69
|
|
|
|
versionName "3.1.0beta6"
|
2018-02-19 01:14:21 +00:00
|
|
|
|
|
|
|
flavorDimensions "default"
|
2018-07-10 13:34:35 +01:00
|
|
|
renderscriptTargetApi 19
|
|
|
|
renderscriptSupportModeEnabled true
|
2017-12-12 22:31:41 +00:00
|
|
|
|
2018-02-19 01:14:21 +00:00
|
|
|
productFlavors {
|
|
|
|
// used for f-droid
|
2018-03-03 22:07:06 +00:00
|
|
|
generic
|
|
|
|
gplay
|
2018-02-19 01:14:21 +00:00
|
|
|
}
|
2017-10-23 11:40:38 +01:00
|
|
|
// Enabling multidex support.
|
|
|
|
multiDexEnabled true
|
|
|
|
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
2017-12-19 16:49:29 +00:00
|
|
|
disable 'MissingTranslation'
|
2017-10-23 11:40:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 13:11:10 +01:00
|
|
|
dexOptions {
|
|
|
|
javaMaxHeapSize "4g"
|
|
|
|
}
|
|
|
|
|
2017-10-23 11:40:38 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/LICENSE'
|
|
|
|
exclude 'META-INF/NOTICE'
|
|
|
|
exclude 'META-INF/rxjava.properties'
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2018-03-07 09:14:20 +00:00
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
htmlReport true
|
|
|
|
htmlOutput file("$project.buildDir/reports/lint/lint.html")
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2018-09-07 12:11:47 +01:00
|
|
|
|
|
|
|
task findbugs(type: FindBugs) {
|
|
|
|
ignoreFailures = false
|
|
|
|
effort = "max"
|
|
|
|
reportLevel = "medium"
|
|
|
|
classes = fileTree("$project.buildDir/intermediates/classes/gplay/debug/com/nextcloud")
|
|
|
|
excludeFilter = file("${project.rootDir}/findbugs-filter.xml")
|
|
|
|
source = fileTree('src/main/java')
|
|
|
|
pluginClasspath = project.configurations.findbugsPlugins
|
|
|
|
classpath = files()
|
|
|
|
include '**/*.java'
|
|
|
|
exclude '**/gen/**'
|
|
|
|
|
|
|
|
reports {
|
|
|
|
xml.enabled = false
|
|
|
|
html.enabled = true
|
|
|
|
html {
|
|
|
|
destination = file("$project.buildDir/reports/findbugs/findbugs.html")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-23 11:40:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
2018-10-03 13:11:10 +01:00
|
|
|
supportLibraryVersion = '28.0.0'
|
2018-11-22 15:12:31 +00:00
|
|
|
workVersion = "1.0.0-alpha11"
|
2017-10-23 11:40:38 +01:00
|
|
|
}
|
|
|
|
|
2017-11-06 19:01:53 +00:00
|
|
|
|
|
|
|
configurations.all {
|
2018-02-08 13:19:43 +00:00
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-core'
|
2017-11-06 19:01:53 +00:00
|
|
|
}
|
|
|
|
|
2017-10-23 11:40:38 +01:00
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-11-22 15:12:31 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
2018-10-02 21:34:00 +01:00
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
|
|
|
|
implementation 'androidx.emoji:emoji-bundled:1.0.0'
|
|
|
|
implementation 'androidx.palette:palette:1.0.0'
|
2018-08-10 01:09:41 +01:00
|
|
|
implementation "android.arch.work:work-runtime:${workVersion}"
|
|
|
|
implementation "android.arch.work:work-firebase:${workVersion}"
|
|
|
|
androidTestImplementation "android.arch.work:work-testing:${workVersion}"
|
2018-07-17 16:22:02 +01:00
|
|
|
|
2018-10-02 21:34:00 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:2.0.0"
|
2017-11-29 21:40:29 +00:00
|
|
|
|
2018-10-03 13:11:10 +01:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
|
|
|
implementation "io.reactivex.rxjava2:rxjava:2.2.2"
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.bluelinelabs:conductor:2.1.5'
|
|
|
|
implementation 'com.bluelinelabs:conductor-support:2.1.5'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.11.0'
|
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
|
|
|
implementation 'com.bluelinelabs:logansquare:1.3.7'
|
|
|
|
annotationProcessor 'com.bluelinelabs:logansquare-compiler:1.3.7'
|
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
|
2017-10-23 11:40:38 +01:00
|
|
|
implementation 'com.github.aurae.retrofit2:converter-logansquare:1.4.1'
|
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.google.dagger:dagger:2.17'
|
|
|
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.17'
|
2017-10-23 11:40:38 +01:00
|
|
|
implementation 'com.github.lukaspili.autodagger2:autodagger2:1.1'
|
|
|
|
annotationProcessor 'com.github.lukaspili.autodagger2:autodagger2-compiler:1.1'
|
|
|
|
|
2018-04-26 19:24:30 +01:00
|
|
|
compileOnly 'javax.annotation:jsr250-api:1.0' // Android only
|
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-04-26 19:24:30 +01:00
|
|
|
implementation 'io.requery:requery:1.5.1'
|
|
|
|
implementation 'io.requery:requery-android:1.5.1'
|
2018-01-15 06:17:34 +00:00
|
|
|
implementation 'net.zetetic:android-database-sqlcipher:3.5.9'
|
2018-04-26 19:24:30 +01:00
|
|
|
annotationProcessor 'io.requery:requery-processor:1.5.1'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'org.parceler:parceler-api:1.1.11'
|
|
|
|
annotationProcessor 'org.parceler:parceler:1.1.11'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2017-11-06 19:01:53 +00:00
|
|
|
implementation 'net.orange-box.storebox:storebox-lib:1.4.0'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
compileOnly "org.projectlombok:lombok:1.18.2"
|
|
|
|
annotationProcessor "org.projectlombok:lombok:1.18.2"
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-11-02 02:53:23 +00:00
|
|
|
implementation 'com.jakewharton:butterknife:9.0.0-rc1'
|
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:9.0.0-rc1'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-07-14 15:22:15 +01:00
|
|
|
implementation 'com.github.HITGIF:TextFieldBoxes:1.4.3'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'eu.davidea:flexible-adapter:5.1.0'
|
|
|
|
implementation 'eu.davidea:flexible-adapter-ui:1.0.0'
|
2017-10-23 11:40:38 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
|
|
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:4.8.0@aar'
|
2018-10-06 05:38:21 +01:00
|
|
|
implementation 'org.webrtc:google-webrtc:1.0.23295'
|
2017-10-27 22:10:06 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
|
2018-08-10 06:34:00 +01:00
|
|
|
|
2018-02-08 12:02:22 +00:00
|
|
|
implementation 'com.yarolegovich:lovely-dialog:1.1.0'
|
|
|
|
implementation 'com.yarolegovich:lovelyinput:1.0.9'
|
|
|
|
implementation 'com.yarolegovich:mp:1.0.9'
|
2017-10-29 22:08:36 +00:00
|
|
|
|
2017-12-12 21:09:29 +00:00
|
|
|
implementation 'me.zhanghai.android.effortlesspermissions:library:1.0.2'
|
|
|
|
|
2017-11-15 21:41:35 +00:00
|
|
|
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
|
2017-11-08 19:06:41 +00:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.github.wooplr:Spotlight:1.3'
|
2018-03-11 21:04:41 +00:00
|
|
|
|
2018-08-08 00:37:03 +01:00
|
|
|
implementation 'com.github.mario:ChatKit:64c1a2fee1'
|
2018-07-25 14:27:46 +01:00
|
|
|
|
2018-05-04 02:59:27 +01:00
|
|
|
implementation 'com.otaliastudios:autocomplete:1.1.0'
|
2018-04-23 14:57:48 +01:00
|
|
|
|
2018-10-01 12:10:46 +01:00
|
|
|
implementation 'com.github.Kennyc1012:BottomSheet:2.4.1'
|
|
|
|
implementation 'eu.davidea:flipview:1.2.0'
|
2018-10-03 07:19:41 +01:00
|
|
|
implementation 'com.github.mario:PopupBubble:a365177d96'
|
2018-05-09 12:46:22 +01:00
|
|
|
|
2018-05-28 20:50:38 +01:00
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
2018-06-25 21:54:28 +01:00
|
|
|
implementation 'com.kevalpatel2106:emoticongifkeyboard:1.1'
|
|
|
|
|
2018-10-26 11:56:53 +01:00
|
|
|
implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
|
2018-10-26 09:47:59 +01:00
|
|
|
|
2017-10-23 11:40:38 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-10-02 21:34:00 +01:00
|
|
|
androidTestImplementation ('androidx.test.espresso:espresso-core:3.1.0-alpha4', {
|
2017-10-23 11:40:38 +01:00
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2018-09-07 12:11:47 +01:00
|
|
|
|
2018-09-07 14:46:05 +01:00
|
|
|
findbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.8.0'
|
2018-09-07 15:10:00 +01:00
|
|
|
findbugsPlugins 'com.mebigfatguy.fb-contrib:fb-contrib:7.4.3'
|
2017-10-23 11:40:38 +01:00
|
|
|
}
|