Updated gradle

pull/194/merge
M66B 3 years ago
parent 3cf7570795
commit 1660631048

@ -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…
Cancel
Save