1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

update Gradle plugin to 7.1.1

This commit is contained in:
Christophe Beyls 2022-02-12 14:39:59 +01:00
parent fc86cb4f4f
commit 070a3f0bdc
2 changed files with 6 additions and 4 deletions

View file

@ -64,9 +64,11 @@ android {
}
packagingOptions {
exclude 'kotlin/**'
exclude 'META-INF/*.kotlin_module'
exclude 'META-INF/*.version'
resources.excludes += [
'kotlin/**',
'META-INF/*.kotlin_module',
'META-INF/*.version'
]
}
}

View file

@ -9,7 +9,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.0'
classpath 'com.android.tools.build:gradle:7.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}