有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java进程“命令”F:\Sdk\buildtools\27.0.3\aapt。exe“”已完成,退出值为非零1

我对我现有的项目有意见。我无法解决这个问题。我尝试过不同的方法来解决这个问题,但我没有得到任何解决办法

Process 'command 'F:\Sdk\build-tools\27.0.3\aapt.exe'' finished with non-zero exit value 1

这是我的应用程序级渐变文件

apply plugin: 'com.安卓.application'
apply plugin: 'realm-安卓'

安卓 {
    compileSdkVersion 27
    buildToolsVersion '27.0.3'
    defaultConfig {
        applicationId "com.example.project"
        minSdkVersion 21
        targetSdkVersion 27
        versionCode 7
        versionName "1.6"
        multiDexEnabled true
        testInstrumentationRunner "安卓.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-安卓.txt')
        }
        debug {
            debuggable true
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-安卓.txt')

        }
    }
    dexOptions {
        jumboMode = true
    }
    aaptOptions {
        cruncherEnabled = false
    }
    realm {
        syncEnabled = true
    }

}






dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    //noinspection GradleCompatible
    implementation 'com.安卓.support:appcompat-v7:27.1.1'
    implementation 'com.安卓.support.constraint:constraint-layout:1.1.2'
    implementation 'com.安卓.support:design:27.1.1'
    implementation 'com.安卓.support:support-v4:27.1.1'
    testImplementation 'junit:junit:4.12'
    implementation 'com.google.安卓.gms:play-services-places:15.0.1'
    implementation 'com.google.安卓.gms:play-services-maps:15.0.1'
    implementation 'com.google.firebase:firebase-auth:16.0.1'
    implementation 'com.google.firebase:firebase-database:16.0.1'
    implementation 'com.google.firebase:firebase-storage:16.0.1'
    implementation 'com.firebaseui:firebase-ui-database:3.3.0'
    implementation 'com.google.firebase:firebase-appindexing:16.0.1'
    implementation 'com.google.firebase:firebase-analytics:16.0.1'
    implementation 'com.firebase:firebase-jobdispatcher:0.8.5'
    implementation 'com.github.sharish:ShimmerRecyclerView:v1.1'
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
    compile 'bg.devlabs.fullscreenvideoview:library:1.0.0'
    compile 'com.squareup.retrofit2:retrofit:2.4.0'
    compile 'com.github.jkennethcarino:RTextEditorView:0.1.1'
    compile 'com.squareup.retrofit2:converter-gson:2.4.0'
    compile 'com.squareup.okhttp3:logging-interceptor:3.9.0'
    compile 'com.安卓.support:cardview-v7:27.1.1'
    compile 'de.hdodenhof:circleimageview:2.2.0'
    compile 'com.安卓.support:recyclerview-v7:27.1.1'
    compile 'com.michaelpardo:active安卓:3.1.0-SNAPSHOT'
    compile 'com.baoyz.swipemenulistview:library:1.3.0'
    compile 'com.github.rerlanggas:ExceptionHandler:1.0.0'
    compile 'com.agrawalsuneet.安卓libs:dotsloader:1.1'
    implementation 'com.mikhaellopez:circularimageview:3.2.0'
    compile 'com.jaredrummler:material-spinner:1.2.5'
    implementation 'me.zhanghai.安卓.materialratingbar:library:1.2.0'
    compile 'com.安卓.support:multidex:1.0.0'
    compile 'com.github.andrestejero:customratingbar:1.1.0'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    implementation files('libs/YouTubeAndroidPlayerApi.jar')
}


apply plugin: 'com.google.gms.google-services'

我已经在这个问题上浪费了我的一天。我尝试了很多方法来解决这个问题,但我无法做到这一点


共 (0) 个答案