NDK Error occured while importing telegram source code from github

前端 未结 2 1280
再見小時候
再見小時候 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

提交回复
热议问题