エラー: Android Studio 3.0 安定版で Kotlin クラスを Java クラスに追加するためのシンボル クラスが見つかりません 質問する

エラー: Android Studio 3.0 安定版で Kotlin クラスを Java クラスに追加するためのシンボル クラスが見つかりません 質問する

私は Android Studio 3.0 といくつかの古い Java クラスを使用して、Java を Kotlin に変換します。その後、Kotlin クラスを Java クラスにインポートできなくなります。以下に、私の Gradle とエラーの画像を示します。

モジュール build.grade

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
        classpath 'com.google.gms:google-services:3.1.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

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

アプリレベルのbuild.gradleでは通常Gradleコードを使用しますが、Android 3.0では何も必要ありません

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.idehnavazan.beautifierclient"
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    dataBinding {
        enabled = true
    }


}
repositories {
    mavenCentral()
    jcenter()
    maven { url 'https://maven.google.com' }
    maven { url 'https://jitpack.io' }


}
dependencies {
    compile 'com.android.support:multidex:1.0.1'  
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.github.rey5137:material:1.2.2'
    compile 'com.android.support:cardview-v7:25.3.1'

}
apply plugin: 'com.google.gms.google-services'

ここに画像の説明を入力してください

ベストアンサー1

Kotlin ファイルを操作するには、プロジェクトに Kotlin を追加する必要があります。

プロジェクト/ビルド.gradle

buildscript {
    ext.kotlinVersion = '1.1.51'
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
    }
}

プロジェクト/モジュール/build.gradle

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
}

次は何ですか

サポート ライブラリ 25.3.1 と Android プラグイン 3.0.0 を使用しているため、次の質問はおそらく次のようになります。スタイル属性 '@android:attr/windowEnterAnimation' が見つかりません

おすすめ記事