通过viewModels()解决未解决的引用问题

3
我有一个问题,Android Studio将by viewModels()标记为错误,但是代码已经成功编译并且可以工作。这个问题只会在Activity中出现,在Fragment中没有这样的错误。如果我使用by viewModel()(Koin)代替by viewModels(),同样的情况也会发生。我尝试了很多解决方案,但是没有一个能帮助我。

我尝试过:

  • 无效缓存
  • 重新启动IDE、PC……
  • 在另一台PC上打开项目
  • 尝试这个答案和这个

错误

我的依赖项(app):

implementation(project(":domain"))
implementation(project(":data"))

implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'

implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'

def koin_version= "3.2.1"
implementation "io.insert-koin:koin-android:$koin_version"

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.8.0-alpha01'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation "androidx.fragment:fragment-ktx:1.5.3"
implementation 'com.my.target:mytarget-sdk:5.15.4'

def lottieVersion = "5.2.0"
implementation "com.airbnb.android:lottie:$lottieVersion"

implementation 'com.google.firebase:firebase-crashlytics-ktx:18.2.13'
implementation 'com.google.firebase:firebase-config-ktx'
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation platform('com.google.firebase:firebase-bom:30.3.1')
implementation 'com.google.android.gms:play-services-auth:20.3.0'
implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
implementation 'com.google.android.gms:play-services-location:20.0.0'

implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'

构建 Gradle(项目):

buildscript {
    repositories {
        google()
    }
    dependencies {
        classpath 'com.google.android.gms:oss-licenses-plugin:0.10.5'
        classpath 'com.google.gms:google-services:4.3.14'
        classpath 'com.android.tools.build:gradle:7.3.0'
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
    }
}
plugins {
    id 'com.android.application' version '7.3.0' apply false
    id 'com.android.library' version '7.3.0' apply false
    id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
    id 'org.jetbrains.kotlin.jvm' version '1.7.10' apply false
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
1个回答

2

我也遇到了这个问题。AppCompatActivity是从ComposeActivity派生的,但不知何故Android Studio没有识别出来,显示为错误。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接