androidstudio how to generate /build/intermediates/proguard-files/proguard-android.txt-2.3.1 -
execution failed task ':chatcore:proguardjar'.
java.io.filenotfoundexception: /users/jake/workspace/mango/project/mangosdk/build/intermediates/proguard-files/proguard-android.txt-2.3.1 (no such file or directory)
here related task in android plugin.
you should make task depend on extractproguardfiles task, , default proguard configs copied build directory android sdk.
in chatcore project's build file, add line:
proguardjar.dependson tasks.withtype(com.android.build.gradle.internal.tasks.extractproguardfiles)
please note particular task not public api, may break in future!
Comments
Post a Comment