已经有很长一段时间没有跟踪Telegram-iOS
的代码了,在国内也没怎么用Telegram
。7.6
版本应该是支持群视频通话功能的吧,没有测试,大家伙儿自己试试吧。先上一个顺利跑起来后的屏幕截图
总的来说,Telegram
开发团队从Buck
编译更改为Bazel
后,似乎编译的坑变得少了很多。编译这个7.6
版本很快就跑起来了。下面是具体步骤,在官方给出的编译步骤基础上有所改动。
Compilation Guide
特别提醒,为了无脑使用下面的终端命令,不要自己在桌面创建目录去拉代码,打开终端直接执行命令,直接在默认的用户目录下操作就好了
$HOME是当前用户主目录,它有个别名 ~
- Install Xcode (directly from https://developer.apple.com/download/more or using the App Store).
编译此版本,特地把Xcode版本从12.2
升级到了12.4
(不要问为啥,问就是Telegram
让升级的) - Clone the project from GitHub:
git clone --recursive https://github.com/TelegramMessenger/telegram-ios.git
没有使用官方给的git命令,不知道为啥,那个地址下载下来的工程大概率Submodule
会下载失败
cd telegram-ios
进入工程目录
git checkout release-7.6
git submodule update
切换到需要编译的版本,本次编译7.6
版本
- Download
Bazel 4.0.0
(下面这一堆都是在配置本地Bazel
环境)
~ 目录下执行
mkdir -p $HOME/bazel-dist
cd $HOME/bazel-dist
curl -O -L https://github.com/bazelbuild/bazel/releases/download/4.0.0/bazel-4.0.0-darwin-x86_64
mv bazel-* bazel
Verify that it's working
bazel-dist 目录下执行
chmod +x bazel
./bazel --version
- Adjust configuration parameters
~ 目录下执行
mkdir -p $HOME/telegram-configuration
telegram-ios 目录下执行
cp -R build-system/example-configuration/* $HOME/telegram-configuration/
- Modify the values in
variables.bzl
- Replace the provisioning profiles in provisioning with valid files
- (
Optional
) Create a build cache directory to speed up rebuilds
~ 目录下执行
mkdir -p "$HOME/telegram-bazel-cache"
- Build the app
python3 build-system/Make/Make.py \
--bazel="$HOME/bazel-dist/bazel" \
--cacheDir="$HOME/telegram-bazel-cache" \
build \
--configurationPath="$HOME/telegram-configuration" \
--buildNumber=100001 \
--configuration=release_universal
- (
Optional
) Generate an Xcode project
python3 build-system/Make/Make.py \
--bazel="$HOME/bazel-dist/bazel" \
--cacheDir="$HOME/telegram-bazel-cache" \
generateProject \
--configurationPath="$HOME/telegram-configuration" \
--disableExtensions
It is possible to generate a project that does not require any codesigning certificates to be installed: add --disableProvisioningProfiles
flag:
在模拟器跑代码,telegram-ios目录执行下面的命令就可以了
python3 build-system/Make/Make.py \
--bazel="$HOME/bazel-dist/bazel" \
--cacheDir="$HOME/telegram-bazel-cache" \
generateProject \
--configurationPath="$HOME/telegram-configuration" \
--disableExtensions \
--disableProvisioningProfiles
Tip: use --disableExtensions
when developing to speed up development by not building application extensions and the WatchOS app.
补充说明
列举一下遇到的问题
1.执行git clone --recursive https://github.com/TelegramMessenger/telegram-ios.git
之后,Submodule
下载失败,自动重试之后还是失败
解决方法
在telegram-ios
目录下执行
git checkout release-7.6
git submodule update
如果还是有提示失败,继续执行git submodule update
直到所有Submodule
成功checkout
到对应节点
2.编译工程的时候,报错rnnoise.h
头文件找不到
解决方法
在telegram-ios
目录下执行
git submodule update
3.编译工程的时候,报错rlottie.h
头文件找不到
这个问题应该是
rlottie
这个三方库没有成功拉下来,看下路径是不是rlottie
文件夹是空的解决方法
在submodules/rlottie/
目录下删除rlottie
空文件夹,重新clone
在telegram-ios
目录下执行git submodule update
(非必需)
4.Telegram
不给看有用的控制台日志
解决方法
Telegram
可以写代码,我可以改代码呀
在AppDelegate.swift
里
搜索
LoggingSettings.defaultSettings = LoggingSettings(logToFile: true, logToConsole: false, redactSensitiveData: true)
修改成
LoggingSettings.defaultSettings = LoggingSettings(logToFile: true, logToConsole: true, redactSensitiveData: true)
重新跑一下模拟器,啥协议内容你都能看咯
5.莫名其妙不能编译了
看上去是路径问题,然而不知道在哪里修改
解决方法(玄学)
重启MAC