From ce503caf4fb94710ee24701fde5a9cc1e1f0bd77 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Sat, 29 Nov 2025 19:54:36 +0800 Subject: [PATCH] acra: Relocate autoservice dependencies under acra block They are only used for ACRA Ref: https://www.acra.ch/docs/Custom-Extensions#by-annotation Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 723b139c2..df8c278c1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -258,10 +258,6 @@ dependencies { implementation(libs.google.exoplayer.smoothstreaming) implementation(libs.google.exoplayer.ui) - // Metadata generator for service descriptors - compileOnly(libs.google.autoservice.annotations) - ksp(libs.zacsweers.autoservice.compiler) - // Manager for complex RecyclerView layouts implementation(libs.lisawray.groupie.core) implementation(libs.lisawray.groupie.viewbinding) @@ -275,6 +271,8 @@ dependencies { // Crash reporting implementation(libs.acra.core) + compileOnly(libs.google.autoservice.annotations) + ksp(libs.zacsweers.autoservice.compiler) // Properly restarting implementation(libs.jakewharton.phoenix)