出了什么问题: 任务':app:transformDexWithInstantRunDependenciesApkForDebug'的执行失败。
com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:无法执行aapt
尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。使用--scan运行以获取完整的见解。
19s建立失败 64个可执行任务:已执行10个,最新54个
这是我的Gradle文件
declare @errorMsg nvarchar(MAX)
declare @combinedString VARCHAR(MAX)
IF EXISTS (select y from db.b)
BEGIN
SELECT @combinedString = COALESCE(@combinedString + ', ', '') + x_y
from (select CONCAT(cg.x, '-', f.y) AS x_y
from db.a cg
LEFT JOIN db.b f
ON cg.x = f.y) AS w;
SET @errorMsg ='The x listed in the database are (x - y if applicable): ' + @combinedString
END
ELSE
BEGIN
SELECT @combinedString = COALESCE(@combinedString + ', ', '') + x_y
from (select cg.x AS x_y
from db.a) AS w;
SET @errorMsg = 'The x listed in the database are (x - y if applicable): ' + @combinedString
END