com.android.application 9.1.0 与 com.google.dagger.hilt.android 2.57.1 不兼容

6 阅读1分钟

com.android.application 9.1.0 与 com.google.dagger.hilt.android 2.57.1 不兼容

在gradle sync时报Failed to apply plugin 'com.google.dagger.hilt.android'

An exception occurred applying plugin request [id: 'com.google.dagger.hilt.android']
> Failed to apply plugin 'com.google.dagger.hilt.android'.
   > Android BaseExtension not found.

解决方法:

将com.google.dagger.hilt.android升级到2.59,com.google.devtools.ksp升级到2.3.4

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {

    id("com.google.devtools.ksp") version "2.3.4" apply false
    id("com.google.dagger.hilt.android") version "2.57.1" apply false
}