gpt4 book ai didi

gradle - 错误 : cannot find symbol class for add kotlin class into java class in android studio 3. 0 稳定

转载 作者:IT老高 更新时间:2023-10-28 13:39:12 29 4
gpt4 key购买 nike

我使用 android studio 3.0 和一些旧的 java 类将 Java 转换为 Kotlin。之后 Kotlin 类无法导入 java 类!在下面你可以看到我的 gradle 和我的错误图片。

模块构建等级

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'

enter image description here

最佳答案

要使用 Kotlin 文件,您需要将 Kotlin 添加到您的项目中。

project/build.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,您的下一个问题可能是:style attribute '@android:attr/windowEnterAnimation' not found .

关于gradle - 错误 : cannot find symbol class for add kotlin class into java class in android studio 3. 0 稳定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47166073/

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