From 46f4a2b4be096914ec931d0dad3941756acaa078 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 7 May 2024 17:19:53 -0700 Subject: [PATCH] audio-echo: cleanup and upgrade dependencies. We don't have any JARs, so that's gone. appcompat is defined by the version catalog, so switch to that. The catalog does define 1.6.1 right now, so this is also an upgrade. --- audio-echo/app/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/audio-echo/app/build.gradle b/audio-echo/app/build.gradle index 982fe12df..68a0b08f2 100644 --- a/audio-echo/app/build.gradle +++ b/audio-echo/app/build.gradle @@ -22,6 +22,5 @@ android { } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.5.1' + implementation libs.appcompat }