From feb55e3c4f32e6404da758b35641f62823883095 Mon Sep 17 00:00:00 2001 From: Wook Song Date: Fri, 12 Apr 2024 14:59:20 +0900 Subject: [PATCH] App/Gradle: Revise plugin dependencies to avoid build error This patch revises the plugin dependencies of the App to use plugin IDs instead of the alias, which includes specific version numbers. The multiple uses of the alias are likely to incur the following error: The request for this plugin could not be satisfied because the plugin is already on the classpath with an unknown version, so compatibility cannot be checked. Signed-off-by: Wook Song --- ml_inference_offloading/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ml_inference_offloading/build.gradle.kts b/ml_inference_offloading/build.gradle.kts index 4daf76e..91d01d6 100644 --- a/ml_inference_offloading/build.gradle.kts +++ b/ml_inference_offloading/build.gradle.kts @@ -1,6 +1,6 @@ plugins { - alias(libs.plugins.androidApplication) - alias(libs.plugins.jetbrainsKotlinAndroid) + id(libs.plugins.androidApplication.get().pluginId) + id(libs.plugins.jetbrainsKotlinAndroid.get().pluginId) } android {