Skip to content

Commit

Permalink
App/Gradle: Revise plugin dependencies to avoid build error
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
wooksong committed Apr 12, 2024
1 parent 1a91e4a commit feb55e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ml_inference_offloading/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit feb55e3

Please sign in to comment.