logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt
How to install Telegram-iOS. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

Telegram-iOS Installation Guide

How to install Telegram-iOS. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for Telegram-iOS. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i Telegram-iOS
or

Install via npx

npx @hexmos/ipm i Telegram-iOS

Prerequisites

Xcode

IDE

Version: See versions.json

git

Version Control

openssl

Tool

python3

Language

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Compile for Development

git clone --recursive -j8 https://github.com/TelegramMessenger/Telegram-iOS.git

cd Telegram-iOS

brew install --cask xcode

openssl rand -hex 8

python3 build-system/Make/Make.py --cacheDir=$HOME/telegram-bazel-cache generateProject --configurationPath=build-system/template_minimal_development_configuration.json --xcodeManagedCodesigning

Compile for App Store

git clone --recursive -j8 https://github.com/TelegramMessenger/Telegram-iOS.git

cd Telegram-iOS

brew install --cask xcode

cp build-system/appstore-configuration.json ../appstore-configuration.json

echo 'Modify ../appstore-configuration.json with your API ID and other details.'

mkdir -p build-system/fake-codesigning

echo 'Place provisioning profiles in build-system/fake-codesigning/profiles.'

python3 build-system/Make/Make.py --cacheDir=$HOME/telegram-bazel-cache generateProject --configurationPath=../appstore-configuration.json --codesigningInformationPath=build-system/fake-codesigning

Build IPA for App Store

git clone --recursive -j8 https://github.com/TelegramMessenger/Telegram-iOS.git

cd Telegram-iOS

brew install --cask xcode

cp build-system/appstore-configuration.json ../appstore-configuration.json

echo 'Modify ../appstore-configuration.json with your API ID and other details.'

mkdir -p build-system/fake-codesigning

echo 'Place provisioning profiles in build-system/fake-codesigning/profiles.'

python3 build-system/Make/Make.py --cacheDir=$HOME/telegram-bazel-cache generateProject --configurationPath=../appstore-configuration.json --codesigningInformationPath=build-system/fake-codesigning

python3 build-system/Make/Make.py --cacheDir=$HOME/telegram-bazel-cache build --configurationPath=../appstore-configuration.json --codesigningInformationPath=build-system/fake-codesigning --buildNumber=100001 --configuration=release_arm64

Build for Simulator (No Codesigning)

git clone --recursive -j8 https://github.com/TelegramMessenger/Telegram-iOS.git

cd Telegram-iOS

brew install --cask xcode

python3 build-system/Make/Make.py --cacheDir=$HOME/telegram-bazel-cache generateProject --configurationPath=build-system/template_minimal_development_configuration.json --xcodeManagedCodesigning --disableProvisioningProfiles