当前位置: 首页 > 知识库问答 >
问题:

任务“:app:processDebugResources”的执行失败

葛磊
2023-03-14

我从构建工具\23.0.2\(Aapt.exe)得到这个错误

以非零退出值1结束。

我正在使用Android Studio Version 1.4.1

我正在使用API级别23和更新的构建工具,我的日志cat通常表示字符串。xml我在其中创建了字符串,以将其引用到列表视图中。

执行任务:[应用程序:GeneratedBugandroidTestSources,:应用程序:GeneratedBugandroidTestSources,:应用程序:CompiledBugandroidTestSources,:mylibrary:GeneratedBugandroidTestSources,:mylibrary:GeneratedBugandroidTestSources,:mylibrary:CompiledBugandroidTestSources,:mylibrary:CompiledBugandroidTestSources]

按需配置是一个孵化功能。: app: preBuild UP-TO-DATE: app: preDebugBuild UP-TO-DATE: app: check DebugManiFestival: app: preRelaseBuild UP-TO-DATE: app: preareComAndreidSupportAppcompatV72311Library UP-TO-DATE: app: preareComAndreidSupportDesign2311Library UP-TO-DATE: app: preDebugSupportRecyclviewV72311Library UP-TO-DATE: app: prereComAndreidSupportSupport V42311Library UP-TO-DATE: app: prebugDebugDependence: app: compileDebugRendercript UP-TO-DATE: app: GenerateDebugBuildConfig UP-TO-DATE: app: GenerateDebugAsset UP-TO-DATE: app: mergeDebugAsset UP-TO-DATE: app: GenerateDebugAsset UP-TO-DATE: app:UP-TO-DATE: app:进程调试清单UP-TO-DATE: app:进程调试资源AGPBI:{"种类":"错误","文本":"Apostrophe前面没有\(在生命周期回调方法中,您可以声明当用户离开并重新进入活动时活动的行为。例如,如果\u0027re构建流媒体视频播放器,则可能会在用户切换到另一个应用程序时暂停视频并终止网络连接。当用户返回时,您可以重新连接到网络,并允许用户从同一地点恢复视频. )", "来源:[{"file":"C:\User\PreciseT3\AndreidStudioProjects\ListviewApp1\app\src\main\res\value\strings.xml","位置":{"starLine": 1}}],"原始":"}

失败了

失败:生成失败,出现异常。

>

com.android.ide.common.process.进程异常:org.gradle.process.internal.执行异常:进程'命令'C:\用户\PreciseT3\AppData\本地\Android\sdk\构建工具\23.0.2\aapt.exe"完成非零退出值1

尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。

构建失败

总时间:12.649秒

共有2个答案

汪泓
2023-03-14

比较一下你的gradle档案我希望这能奏效

 apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.2'

    defaultConfig {
        applicationId "info.tranetech.laundry"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
android {
    useLibrary 'org.apache.http.legacy'
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:recyclerview-v7:+'
    compile 'com.android.support:cardview-v7:+'
    compile 'com.android.support:design:23.0.1'
    compile 'com.squareup.picasso:picasso:+'
    testCompile 'junit:junit:4.12'
    compile 'com.facebook.android:facebook-android-sdk:4.0.0'
    compile files('libs/android-async-http-1.4.4.jar')
    compile 'com.google.android.gms:play-services:8.4.0'
}
胡向阳
2023-03-14

问题出在你的字符串中。xml

查找所有出现的单引号(')或撇号,并在每次出现之前添加一个反斜杠转义字符(\)。

XML无法处理(

基本上,用\'

 类似资料: