Issue
I just updated sdk and android studio i have this problem:
Error:Execution failed for task ':library:proguardRelease'.
> java.lang.NullPointerException (no error message)
How can i solve this?
Can i go home?
Solution
First, try to use clean
.
Second, if that doesn't help, get more info about the failure. You can use the following parameters for your build command:
-i
will print the logs withINFO
level-d
will print the logs withDEBUG
level-s
will print the exception stack trace
e.g., running ./gradlew assemble -d -s
should give you a lot of information that can help locate the issue.
Answered By - Egor
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.