其他分享
首页 > 其他分享> > Android报错(* Try: Run with --stacktrace option to get the stack trace. Run with --debug)

Android报错(* Try: Run with --stacktrace option to get the stack trace. Run with --debug)

作者:互联网

记录解决过程

1.在命令行中进入项目的根目录,或者可以在Android studio的Terminal中直接操作也可以,然后敲入一个命令:
gradlew compileDebug --stacktrace

2.然后根据命令行给出的提示,还可以在后面加上-info或者-debug的选项得到更详细的信息:
gradlew compileDebug --stacktrace -info
或者 gradlew compileDebug --stacktrace -debug

3.根据详细信息提示,替换命令行中的代码:
gradlew compileDebugSources --stacktrace -info

标签:info,stacktrace,Run,--,gradlew,报错,debug,compileDebug
来源: https://blog.csdn.net/m0_49241867/article/details/120596429