我从build-tools\23.0.2\ (Aapt.exe)
以非零退出值1结束。
我正在使用Android Studio Version 1.4.1
我正在使用API level 23
和更新的构建工具,而我的日志cat通常意味着string.xml
我创建字符串以将其引用到列表视图。
执行任务:[:app:generateDebugSources, :app:generateDebugAndroidTestSources,:app:compileDebugSources, :app:compileDebugAndroidTestSources,:mylibrary:generateDebugSources, :在MyLibrary:generateDebugAndroidTestSources, :在MyLibrary:compileDebugSources, :在MyLibrary:compileDebugAndroidTestSources]
按需配置是一项孵化功能。 :应用程序:预生成 最新消息:app:preDebugBuild UP-TO-DATE:app:checkDebugManifest :app:preReleaseBuild UP-TO-DATE :app:prepareComAndroidSupportAppcompatV72311Library UP-TO-DATE :app:prepareComAndroidSupportDesign2311Library UP-TO-DATE :app:prepareComAndroidSupportRecyclerviewV72311Library UP-TO-DATE :app:prepareComAndroidSupportSupportV42311Library UP-TO-DATE :app:prepareDebugDependencies:app:compileDebugAidl UP-TO-DATE :app:compileDebugRenderscript UP-TO-DATE:app:generateDebugBuildConfig UP-TO-DATE:app:generateDebugAssets UP-TO-DATE:app:mergeDebugAssets UP-TO-DATE:app:generateDebugResValues UP-TO-DATE :app:generateDebugResources UP-TO-DATE:app:mergeDebugResources 最新消息:app:processDebugManifest UP-TO-DATE :app:processDebugResources AGPBI:{" kind":" error"," text":" Apostrophe 没有前面的\(在生命周期回调方法中,你可以 声明用户离开并重新进入时您的活动的行为方式 活动。例如,如果您正在构建流式视频 播放器,您可以暂停视频并终止网络连接 当用户切换到另一个应用程序时。当用户返回时,您可以 重新连接到网络并允许用户从中恢复视频 同一个地方。 )","来源":[ {"文件":" C:\用户\ PreciseT3 \ AndroidStudioProjects \ ListviewApp1 \应用\ SRC \主\ RES \值\的strings.xml""位置" : {" startLine":1}}],"原创":""}
FAILED
失败:构建因异常而失败。
出了什么问题:任务执行失败':app:processDebugResources'。
com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:Process'命令 ' C:\用户\ PreciseT3 \应用程序数据\本地\ Android的\ SDK \构建工具\ 23.0.2 \ aapt.exe'' 完成非零退出值1
尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。
建立失败
总时间:12.649秒
答案 0 :(得分:0)
问题出在您的string.xml
查找所有出现的单引号('
)或撇号,并在每次出现之前添加反斜杠转义符(\
)。
XML无法处理('
)
基本上,将所有'
替换为\'
答案 1 :(得分:0)
比较你的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'
}