Android studio 用 gradle 编译 Android project 怎么样配置来保持行号
为了混淆后还能看到crash时报错的行号,需要配置javac参数来保持行号
以前用 ant 是这样
<javac
debug="true" debuglevel="source,lines,vars" get/classes"
</javac>
现在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
求大牛解答,先谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论