java - Android studio 用 gradle 编译 Android project 怎么样配置来保持行号

 wyf叶子_594 发布于 2022-11-05 12:28

为了混淆后还能看到crash时报错的行号,需要配置javac参数来保持行号

以前用 ant 是这样


现在Android studio 改用 gradle , 我在网上查找了一些方法
1)方法1:地址:https://github.com/codeborne/selenide/blob/master/build.gradle

 allprojects {
repositories {
    jcenter()
}

compileJava.options.debugOptions.debugLevel = "source,lines,vars"
}

但编译报错:
Error:(16, 0) Could not find property 'compileJava' on root project

加上 apply plugin: 'java'

allprojects {
    repositories {
        jcenter()
    }
    apply plugin: 'java'
    compileJava.options.debugOptions.debugLevel = "source,lines,vars"
    }

报错:Error:The 'java' plugin has been applied, but it is not compatible with the Android plugins.

2)方法2 地址:http://gradle.1045684.n5.nabble.com/Providing-custom-debugLevel-for-compile-task-td1433678.html

allprojects 
{ 
     usePlugin('java') 

     // define global compile options 
     compile.destinationDir = new File("$rootDir/tmp/build/classes") 
     compile.sourceCompatibility = 1.4 
     compile.targetCompatibility = 1.4 
     compile.options.bootClasspath = bootClasspath 
     compile.options.debug = true 
     compile.options.debugOptions.debugLevel = 'lines,source' 
     compile.options.deprecation = true 
} 

也是但编译报错:
Error:(16, 0) Could not find property 'compile' on root project

我的gradle 配置
classpath 'com.android.tools.build:gradle:1.0.0'
distributionUrl=https://services.gradle.org/distributions/gradle-2.2.1-all.zip

求大牛解答,先谢谢

撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有