gpt4 book ai didi

使用 Kotlin/Firebase 的 Android Studio 代码完成 - 行为不端

转载 作者:行者123 更新时间:2023-11-29 23:52:28 25 4
gpt4 key购买 nike

更新:当我在类的方法中编写 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'

最佳答案

我也遇到过这种情况。这是 Android Studio Kotlin 插件中的一个错误。它不会影响您的代码,只是删除不需要的单词。

这确实很烦人,即使现在有时也会发生。所以让我们等到有人解决这个问题。

关于使用 Kotlin/Firebase 的 Android Studio 代码完成 - 行为不端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50741990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com