- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我最近更新了我的 kotlin 和 kotlin 扩展插件,并且在构建时出现以下错误。我尝试使用 gradle 清理构建或同步项目,但没有任何效果
e: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
Error:Execution failed for task ':app:compileDebugKotlin'.
> Compilation error. See log for more details
build.gradle如下
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
buildscript {
ext.kotlin_version = '1.0.0-beta-1038'
ext.anko_version = '0.7.2'
ext.android_support_version = '23.0.1'
ext.android_extensions_version = '1.0.0-beta-1038'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
}
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.xxxxxxxxxx.app"
minSdkVersion 18
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
debug.java.srcDirs += 'build/generated/src/main/debug'
release.java.srcDirs += 'build/generated/src/main/release'
}
dexOptions {
preDexLibraries = false
javaMaxHeapSize "4g"
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}
repositories {
jcenter()
mavenCentral()
jcenter { url "https://jitpack.io" }
}
dependencies {
provided fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'io.realm:realm-android:0.83.0'
compile 'com.github.PhilJay:MPAndroidChart:v2.1.3'
compile 'com.braintreepayments.api:braintree:1.+'
compile('com.mikepenz:materialdrawer:4.4.1@aar') {
transitive = true
}
compile 'com.mikepenz:google-material-typeface:1.2.0.1@aar'
compile project(':temperature')
compile project(':heart')
compile project(':lungs')
compile "com.android.support:cardview-v7:$android_support_version"
compile 'com.github.wendykierp:JTransforms:3.1'
compile 'fuel:fuel:0.57'
compile "org.jetbrains.anko:anko-sdk15:$anko_version"
compile "org.jetbrains.anko:anko-support-v4:$anko_version"
compile 'org.apache.directory.studio:org.apache.commons.io:2.4'
compile 'com.google.android.gms:play-services:8.1.0'
compile "com.android.support:recyclerview-v7:$android_support_version"
compile "com.android.support:appcompat-v7:$android_support_version"
compile "com.android.support:support-v4:$android_support_version"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
谁能指出这是什么问题?
谢谢
最佳答案
我通过在终端中构建项目然后在 intellij(或 android studio)中运行应用程序解决了这个问题。
gradle clean build -> 在 ide 中运行应用
关于android - 任务 ':app:compileDebugKotlin' 执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33357507/
失败:构建失败,出现异常。 出了什么问题:任务“:react-native-screens:compileDebugKotlin”执行失败。 Error while evaluating proper
更新到 Dart 3.0 后,当我在 Android 模拟器上启动应用程序时出现此错误。 对于 iOS 物理设备,它的构建还可以。不幸的是,无法尝试使用 Android 物理设备。有任何想法吗? e:
尝试将我的 Flutter 应用程序编译到 Android 模拟器时,我遇到了这个令人讨厌的错误。这是错误日志(太长,无法完全粘贴): aunching lib/main.dart on sdk gp
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我尝试安装 audioplayers: ^0.17.1并运行我的 flutter 项目。它引发以下错误。有人可以帮忙吗? e: C:\Users\User\flutter\.pub-cache\hos
我尝试使用 gradle-plugin 在 Jenkins 中构建我的 apk,但由于 Internal compiler error 该项目是用Kotlin编写的 在 Jenkins 中,我在 sv
我最近更新了我的 kotlin 和 kotlin 扩展插件,并且在构建时出现以下错误。我尝试使用 gradle 清理构建或同步项目,但没有任何效果 e: Supertypes of the follo
我正在做一个旧项目。它在 5 天前运行良好。现在我正面临agora 的错误。我之前的代码没有任何改变。 这是错误- FAILURE: Build failed with an exception. *
任务':location:compileDebugKotlin'执行失败。 build:gradle(模块:app) ext.kotlin_version = '1.6.10' rep
Kotlin Gradle 插件在不同的子项目中多次加载,不受支持并且可能会破坏构建。 这可能发生在应用带有 Gradle 'plugins { ... }' DSL 的 Kotlin 插件的子项目中
我正在开发一个 React Native 应用程序,其中包含了一些 expo 库(裸工作流)。我已经成功使用了expo-location ,但现在我也安装了expo-camera ,应用程序将不再使用
我尝试从 运行默认的 flutter 应用程序 flutter 创建 在我的 android 设备上,但它给我一个错误。有人可以帮忙吗? Launching lib\main.dart on SM G
更新完我的flutter工程,准备在android studio中运行应用,出现如下错误。 e: C:\Users\user\AppData\Local\Pub\Cache\hosted\pub.da
我不知道我是如何陷入这个困境的,但我认为问题出在Java二进制路径上......来自flutter doctor的路径与异常中的路径不同。当我运行现有项目或创建新项目并尝试运行它时,它仍然会给出相同的
我已将 Android Studio 更新为 3.3,现在我无法构建现有项目之一,我尝试过无效/重启,还检查了 gradle -wrapper.properties其中gradle版本是最新更新: d
Error:Execution failed for task ':app:compileDebugKotlin'. > Compilation error. See log for more det
我已遵循此页面中的所有说明:https://flutter.dev/docs/get-started/install/windows 但是当我尝试运行“first_app”时出现错误: Android
注意:某些输入文件使用或覆盖已弃用的 API。注意:使用 -Xlint:deprecation 重新编译以获取详细信息。注意:某些输入文件使用未经检查或不安全的操作。注意:使用 -Xlint:unch
注意:某些输入文件使用或覆盖已弃用的 API。注意:使用 -Xlint:deprecation 重新编译以获取详细信息。注意:某些输入文件使用未经检查或不安全的操作。注意:使用 -Xlint:unch
我正在将我的 Android 项目从 Java 转换为 Kotlin。我已经和其他 3 个项目成功地完成了这个过程。 但是这个有点大,结构复杂。我已将一些文件转换为 Kotlin 并进行项目编译。但是
我是一名优秀的程序员,十分优秀!