From 7cffae9cd0ea203c4f35f130783df249655c66f6 Mon Sep 17 00:00:00 2001 From: ibaker Date: Thu, 7 Mar 2024 06:11:05 -0800 Subject: [PATCH] Apply `common_library_config` in `test_session_current/build.gradle` This is the only `build.gradle` file that currently doesn't apply this config, and it seems to lead to desugaring errors when apps depend on the library locally. PiperOrigin-RevId: 613559535 --- libraries/test_session_current/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/test_session_current/build.gradle b/libraries/test_session_current/build.gradle index 43bdb61753..d65a68d509 100644 --- a/libraries/test_session_current/build.gradle +++ b/libraries/test_session_current/build.gradle @@ -11,8 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -apply from: "$gradle.ext.androidxMediaSettingsDir/constants.gradle" -apply plugin: 'com.android.application' +apply from: "$gradle.ext.androidxMediaSettingsDir/common_library_config.gradle" // TODO(b/178560255): Remove the "group" override after the "group" in build.gradle changed group 'androidx.media3'