Move Event exclusion to the module appconfig.

It has to become an android module to be able to add a dependency on : libraries:matrix:api.
This commit is contained in:
Benoit Marty 2024-04-02 14:35:58 +02:00
parent db3f17fd7d
commit e296fe2877
3 changed files with 37 additions and 25 deletions

View file

@ -14,16 +14,13 @@
* limitations under the License.
*/
plugins {
id("java-library")
id("com.android.lint")
alias(libs.plugins.kotlin.jvm)
id("io.element.android-library")
alias(libs.plugins.anvil)
alias(libs.plugins.ksp)
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
android {
namespace = "io.element.android.appconfig"
}
anvil {
@ -33,4 +30,5 @@ anvil {
dependencies {
implementation(libs.dagger)
implementation(projects.libraries.di)
implementation(projects.libraries.matrix.api)
}