Processexception When Buildtoolsversion Is Changed From 22.0.1 To 23.0.1
Seeing ProcessException, it seems to be an old question but the cause for this exception in my case is different. I am trying to move compileSDKVersion from 22 to 23. I also change
Solution 1:
I think that the problem can be in your dependencies closure:
First, your Google Play Services configuration are redundant, you are compiling full Play Services APIs and individuals Play Services APIs. Try to only use individuals Play Services. APIs. See Google Play Services Setup Docs.
Second, maybe your multidex configuration is wrong, see Multidex Docs
Third, try to update your android support dependencies to the last version available
UPDATE
By gcr's feedback, the issue was caused by dependency-duplication in Google Play services (full APIs and individuals APIs in the same build.gradle file).
Post a Comment for "Processexception When Buildtoolsversion Is Changed From 22.0.1 To 23.0.1"