gpt4 book ai didi

android - 资源目录导航无效

转载 作者:太空狗 更新时间:2023-10-29 15:58:35 26 4
gpt4 key购买 nike

添加导航目录时显示错误资源目录无效。

处理命令“~/Android/Sdk/builds-tools/27.0.3/aapt”已完成,退出值为 1。

构建.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 27
defaultConfig {
applicationId "com.crushcoder.testapp"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'android.arch.lifecycle:extensions:1.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

我在目录res/navigation/nav_graph.xml下创建了导航文件

最佳答案

导航需要使用 AAPT2,它在 Gradle Plugin 3.0.0 or higher 上默认启用.

由于您收到的错误来自 aapt,您似乎已通过 gradle.properties 中的 android.enableAapt2=false 标志禁用了 aapt2 。删除该行以使用 aapt2。

关于android - 资源目录导航无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50725735/

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