Android Telegram App --> Java.Lang.Unsatisfiedlinkerror: No Implementation Found for Void

UnsatisfiedLinkError: Getting this error in Telegram project

Finally found the solution for it!
The project has C and CPP files that needs libraries which is in .so extension while running in devices.Recently they have deleted those files which is added in the commit section.That is why we get an exception while running.So we have run these C and CPP codes using NDK and Cygwin.

Download NDK:
http://developer.android.com/intl/es/ndk/downloads/index.html

Download Cygwin:
https://www.cygwin.com/

Removing prebuilt libraries. The source code for all libraries is (and always was) available here: https://github.com/DrKLO/Telegram/tree/master/TMessagesProj/jni

Telegram source code on android source code gives 'java.lang.UnsatisfiedLinkError:'

I also faced this error while I was trying to open the project in Intellij idea,later I Installed the latest version of Android studio and I Upgraded the Gradel and also the required repositories in sdk manager, after that all the errors has gone-but remember that ,don't try to do anything while it's indexing.

Telegram getting force closed on VOIP call?

One of the libraries of the telegram was updated and was not mentioned on the source code page.

By updating library https://github.com/grishka/libtgvoip, and cleaning my project made my app working fine

Telegram NDK build : Command not found

Finally I have found the answer after referring many stackoverflow link

I have downloaded the ndk and extract it in the folder.

And opened the android studio terminal, navigated to ndk folder.

finally I ran the following command
ndk-build -C xxxxxxx\Telegram-master\TMessagesProj\jni

and it gets compiled and I have executed the github telegram project.



Related Topics



Leave a reply



Submit