|
@@ -36,7 +36,7 @@ apply plugin: "org.jlleitschuh.gradle.ktlint"
|
|
|
|
|
|
android {
|
|
|
compileSdkVersion 30
|
|
|
- buildToolsVersion '30.0.3'
|
|
|
+ buildToolsVersion '32.0.0'
|
|
|
defaultConfig {
|
|
|
minSdkVersion 21
|
|
|
targetSdkVersion 30
|
|
@@ -85,26 +85,26 @@ android {
|
|
|
testInstrumentationRunnerArgument "TEST_SERVER_PASSWORD", "${NC_TEST_SERVER_PASSWORD}"
|
|
|
}
|
|
|
|
|
|
- dexOptions {
|
|
|
- javaMaxHeapSize "4g"
|
|
|
- }
|
|
|
-
|
|
|
buildTypes {
|
|
|
release {
|
|
|
minifyEnabled false
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
packagingOptions {
|
|
|
- exclude 'META-INF/LICENSE.txt'
|
|
|
- exclude 'META-INF/LICENSE'
|
|
|
- exclude 'META-INF/NOTICE.txt'
|
|
|
- exclude 'META-INF/NOTICE'
|
|
|
- exclude 'META-INF/DEPENDENCIES'
|
|
|
- exclude 'META-INF/rxjava.properties'
|
|
|
+ resources {
|
|
|
+ excludes += [
|
|
|
+ 'META-INF/LICENSE.txt',
|
|
|
+ 'META-INF/LICENSE',
|
|
|
+ 'META-INF/NOTICE.txt',
|
|
|
+ 'META-INF/NOTICE',
|
|
|
+ 'META-INF/DEPENDENCIES',
|
|
|
+ 'META-INF/rxjava.properties'
|
|
|
+ ]
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+
|
|
|
android.applicationVariants.all { variant ->
|
|
|
String variantName = variant.name
|
|
|
String capVariantName = variantName.substring(0, 1).toUpperCase(Locale.ROOT) + variantName.substring(1)
|
|
@@ -132,16 +132,16 @@ android {
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
}
|
|
|
|
|
|
- lintOptions {
|
|
|
- abortOnError false
|
|
|
- htmlReport true
|
|
|
- htmlOutput file("$project.buildDir/reports/lint/lint.html")
|
|
|
- disable 'MissingTranslation'
|
|
|
- }
|
|
|
|
|
|
buildFeatures {
|
|
|
viewBinding true
|
|
|
}
|
|
|
+ lint {
|
|
|
+ abortOnError false
|
|
|
+ disable 'MissingTranslation'
|
|
|
+ htmlOutput file("$project.buildDir/reports/lint/lint.html")
|
|
|
+ htmlReport true
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
ext {
|
|
@@ -236,7 +236,7 @@ dependencies {
|
|
|
kapt "com.jakewharton:butterknife-compiler:${butterknifeVersion}"
|
|
|
implementation 'eu.davidea:flexible-adapter:5.1.0'
|
|
|
implementation 'eu.davidea:flexible-adapter-ui:1.0.0'
|
|
|
- implementation fileTree(downloadWebRtc.getOutputPath())
|
|
|
+ implementation fileTree(downloadWebRtc.libFile.path)
|
|
|
implementation 'com.yarolegovich:lovely-dialog:1.1.1'
|
|
|
implementation 'com.yarolegovich:mp:1.1.6'
|
|
|
implementation 'me.zhanghai.android.effortlesspermissions:library:1.1.0'
|