mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-03 10:16:45 +00:00
Updated gradle
This commit is contained in:
parent
3cf7570795
commit
1660631048
2 changed files with 21 additions and 13 deletions
|
@ -76,21 +76,29 @@ android {
|
||||||
includeInApk = false
|
includeInApk = false
|
||||||
includeInBundle = false
|
includeInBundle = false
|
||||||
}
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
exclude 'LICENSES'
|
jniLibs {
|
||||||
exclude 'META-INF/LICENSE.txt'
|
excludes += [
|
||||||
exclude 'META-INF/README.md'
|
'org/apache/**'
|
||||||
exclude 'META-INF/CHANGES'
|
]
|
||||||
exclude 'META-INF/jersey-module-version'
|
}
|
||||||
exclude 'META-INF/COPYRIGHT.html'
|
resources {
|
||||||
exclude 'META-INF/LICENSE.gpl.txt'
|
excludes += [
|
||||||
exclude 'META-INF/LICENSE.commercial.txt'
|
'LICENSES',
|
||||||
exclude 'org/apache/**'
|
'META-INF/LICENSE.txt',
|
||||||
exclude 'LICENSE-2.0.txt'
|
'META-INF/README.md',
|
||||||
exclude 'RELEASE.txt'
|
'META-INF/CHANGES',
|
||||||
|
'META-INF/jersey-module-version',
|
||||||
|
'META-INF/COPYRIGHT.html',
|
||||||
|
'META-INF/LICENSE.gpl.txt',
|
||||||
|
'META-INF/LICENSE.commercial.txt',
|
||||||
|
'LICENSE-2.0.txt',
|
||||||
|
'RELEASE.txt'
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.SigningConfig.html
|
// https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.SigningConfig.html
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
|
|
|
@ -8,7 +8,7 @@ buildscript {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// https://developer.android.com/studio/releases/gradle-plugin
|
// https://developer.android.com/studio/releases/gradle-plugin
|
||||||
classpath 'com.android.tools.build:gradle:7.0.3'
|
classpath 'com.android.tools.build:gradle:7.0.4'
|
||||||
// https://github.com/bugsnag/bugsnag-android-gradle-plugin
|
// https://github.com/bugsnag/bugsnag-android-gradle-plugin
|
||||||
// https://mvnrepository.com/artifact/com.bugsnag/bugsnag-android-gradle-plugin
|
// https://mvnrepository.com/artifact/com.bugsnag/bugsnag-android-gradle-plugin
|
||||||
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:7.1.0'
|
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:7.1.0'
|
||||||
|
|
Loading…
Reference in a new issue