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

Popular posts from this blog

'hasOwnProperty' in javascript -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

android - Unable to generate FCM token from dynamically instantiated Firebase -