gpt4 book ai didi

android - 为什么我的代码会显示我的Android Studio中不存在的文件错误?

转载 作者:行者123 更新时间:2023-12-02 13:17:42 26 4
gpt4 key购买 nike

我在android studio中有问题。
我导入了该项目,并尝试使用logcat和木材日志,但是它在构建中显示错误,而且在logcat中我看不到我的项目,没有可调试的过程显示。

这是build.gradle文件

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

// 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
}

此gradle应用程式程式码
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.android.dessertpusher"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha4'
implementation 'com.jakewharton.timber:timber:4.7.1'
}

这是错误,我的资源选项卡中没有values.xml资源
.gradle\caches\transforms-2\files-2.1\d8475bbb2e3cd4785bafd0a23122f74a\constraintlayout-2.0.0-alpha4\res\values\values.xml:209:5-3555: AAPT: error: resource attr/motionProgress (aka com.example.android.dessertpusher:attr/motionProgress) not found.

最佳答案

您似乎在constraintlayout:2.0.0-alpha4中遇到以下问题:https://issuetracker.google.com/issues/136103084

该问题似乎已在2.0.0-beta3中修复,因此希望使用更新的版本可以解决您的问题。根据Google's Maven Repositoryconstraintlayout的最新版本是2.0.0-beta6

关于android - 为什么我的代码会显示我的Android Studio中不存在的文件错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61967132/

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