NDK Error occured while importing telegram source code from github

前端 未结 2 1282
再見小時候
再見小時候 2021-02-11 08:54

I downloaded telegram open source code for android from the following the link https://github.com/DrKLO/Telegram. While importing the project am getting the following errors:<

相关标签:
2条回答
  • 2021-02-11 09:50

    The reason for your error is that the libtgvoip is a submodule and you did not clone the repository recursively so the required library has not been checked out.

    To fix this go to the folder where you cloned the project and run

     git submodule update --init --recursive
    

    This will check out the required submodule

    0 讨论(0)
  • 2021-02-11 09:50

    no contents inside jni/libtgvoip

    so either do git submodule update --init --recursive or

    download from here and past it inside jni/libtgvoip

    0 讨论(0)
提交回复
热议问题