/TIMSDK

腾讯云通讯消息服务SDK,简单快速的即时通讯解决方案。

Primary LanguageJavaScript

TIMSDK

腾讯云通信IM服务

最新版本 4.2.9 @2019.03.27

iOS & Mac:

bugfix:

  1. 修复ipv6环境下crash的问题
  2. 修复资料设置整数失败的问题

Android:

bugfix:

  1. 修复资料设置整数失败的问题

如何只检出指定平台的代码?

  • 检出 Android
git init TIM_Android
cd TIM_Android
git remote add origin https://github.com/tencentyun/TIMSDK.git
git config core.sparsecheckout true
echo "Android/*" >> .git/info/sparse-checkout
git pull origin master
  • 检出 iOS
git init TIM_iOS
cd TIM_iOS
git remote add origin https://github.com/tencentyun/TIMSDK.git
git config core.sparsecheckout true
echo "iOS/*" >> .git/info/sparse-checkout
git pull origin master
  • 检出 Mac
git init TIM_Mac
cd TIM_Mac
git remote add origin https://github.com/tencentyun/TIMSDK.git
git config core.sparsecheckout true
echo "Mac/*" >> .git/info/sparse-checkout
git pull origin master
  • 检出 Windows
git init TIM_Windows
cd TIM_Windows
git remote add origin https://github.com/tencentyun/TIMSDK.git
git config core.sparsecheckout true
echo "Windows/*" >> .git/info/sparse-checkout
git pull origin master