我无法在MainActivity.kt中使用Kotlin函数

um6iljoc  于 2022-12-23  发布在  Kotlin
关注(0)|答案(1)|浏览(128)

我试图在MainActivity.kt文件中使用repeat函数,但id doens似乎工作正常,这里是我得到的错误:

注意:即使print也不起作用

以下是println的建议导入

我说可能是Kotin配置中缺少了一些东西,所以下面是我的build.gradle(模块)

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'kotlin-android-extensions'
}

android {
    compileSdk 32

    defaultConfig {
        applicationId "com.example.myapplication4"
        minSdk 21
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildFeatures {
        viewBinding = true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {
    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'com.google.android.material:material:1.7.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.4'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
    apply plugin : "kotlin-android"
    apply plugin : "kotlin-android-extensions"

}

构建.gradle(项目)

buildscript {
    ext.kotlin_version = "1.6.21"
    ext.supportLibVersion = "25.3.0"
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"

    }
}
plugins {
    id 'com.android.application' version '7.1.0' apply false
    id 'com.android.library' version '7.1.0' apply false
    id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

插件已安装:

我的项目中的Kotlin配置:

工具〉Kotlin〉在项目中配置kotlin

z9smfwbn

z9smfwbn1#

(观点)Android Studio并不是学习普通Kotlin的最佳IDE(我说的普通是指与Android无关的东西)
(答案)在您的情况下,如果您想打印一些东西(将出现在logcat btw中),您必须导入第一件东西,即:

您将不得不(可能,不确定)对您的repeat执行类似的操作

相关问题