更新:当我在类的方法中编写lambda时,总会出现此错误,并且我引用该类的变量。当我在方法中引用变量时,它不会出现。
我正在使用Firebase进行Kotlin开发的简单指南。但不知何故,Android Studio现在已经将其代码完成了一些。
我有一个名为FirestoreUtil的类,其中我有private val currentUserDocRef
,即使在该类中编写,也无法使代码完成正常工作。
这个问题适用于我在这个项目中编写的所有类。
我开始输入' currentUs'等...看看它建议变量及其类型。我选择它,但不只是写
currentUserDocRef
反而抽出
com.leonhardprintz.firemessage.utils.FirestoreUtil.currentUserDocRef
当我试图完成我自己编写的变量时,它始终如一地这样做。外部库加载得很好。
有没有人遇到过这个?
以下是我的gradle文件的内容
buildscript {
ext.kotlin_version = '1.2.41'
ext.anko_version = '0.10.5'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle- plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
和
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.leonhardprintz.firemessage"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//support
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
implementation 'com.android.support:support-vector-drawable:27.1.1'
//firebase
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-firestore:17.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-storage:16.0.1'
//firebase-ui
implementation 'com.firebaseui:firebase-ui-auth:4.0.1'
implementation 'com.firebaseui:firebase-ui-storage:4.0.1'
//glide
implementation 'com.github.bumptech.glide:glide:4.7.1'
implementation 'com.android.support:support-v4:27.1.1'
kapt 'com.github.bumptech.glide:compiler:4.7.1'
//groupie
implementation 'com.xwray:groupie:2.0.3'
implementation 'com.xwray:groupie-kotlin-android-extensions:2.0.3'
//anko
implementation "org.jetbrains.anko:anko:$anko_version"
implementation "org.jetbrains.anko:anko-design:$anko_version"
implementation "org.jetbrains.anko:anko-coroutines:$anko_version"
//test
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
apply plugin: 'kotlin-kapt'
kotlin {
experimental {
coroutines "enable"
}
}
androidExtensions {
experimental = true
}
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:1)
我经历了同样的事情。这是Android Studio Kotlin插件中的一个错误。它不会影响您的代码,只需删除不必要的单词。
确实很烦人,甚至现在有时也会发生。所以,让我们等到有人解决这个问题。