2

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

处理命令“~/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 目录下创建了导航文件

4

2 回答 2

6

导航需要使用,在Gradle 插件 3.0.0 或更高版本AAPT2上默认启用。

由于您aapt收到的错误来自. 删除该行以使用 aapt2。android.enableAapt2=falsegradle.properties

于 2018-06-06T17:08:21.300 回答
1

或者,您可以将@ianhanniballake 的答案如下

android.enableAapt2=true
于 2018-06-06T17:19:19.207 回答