我在安卓工作室有问题。 我导入了这个项目并尝试使用 logcat 和 timber log,但它在构建中显示错误,并且在 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'
}
这是错误,我的资源选项卡中没有值.xml资源
.gradlecachestransforms-2files-2.1d8475bbb2e3cd4785bafd0a23122f74aconstraintlayout-2.0.0-alpha4resvaluesvalues.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
中修复,因此希望使用较新的版本可以解决您的问题。根据谷歌的Maven存储库,constraintlayout
的最新版本是2.0.0-beta6
。