Reputation: 101
I am trying to use the q-municate-android project from GitHub. When I clean the project, I get the following error:
Error:Execution failed for task ':Q- municate_core:transformNative_libsWithSyncJniLibsForRelease'.
> java.io.FileNotFoundException: C:\Users\user\Desktop\Newfolder\QuickBlox\q-municate-android-master\q-municate-android-master\Q-municate_core\build\intermediates\bundles\release\jni\lib\arm64-v8a\libjingle_peerconnection_so.so (The system cannot find the path specified)
I am using Windows 10 and Android Studio 1.5.1
The error is: libjingle_peerconnection_so.so (The system cannot find the path specified)
Upvotes: 2
Views: 298
Reputation: 276
Try changing the gradle version down to 1.3.1. Apparently the problem is with the later versions of gradle (2.x).
Alternatively, the longer way is to:
1) Unzip the native libraries from the jar file. Then remove the jar file.
2) Move the unpacked lib/<jingle>
folders to src/main/jniLibs/<jingle>
(https://code.google.com/p/android/issues/detail?id=193063)
Upvotes: 1