资源目录导航无效

Invalid resource directory navigation

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

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

build.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.enableAapt2=true