# Nagram Nagram is a third-party Telegram client based on [NekoX](https://github.com/NekoX-Dev/NekoX) with some modifications. - Official Site: - Telegram Update Channel: - Releases: - Issues here: ## Additional feature over NekoX 1. Combine message 2. Editable text style 3. Forced copy 4. Invert reply 5. Quick reply in longClick menu ---- ## API and Protocol documentation Telegram API manuals: MTproto protocol manuals: ## Compilation Guide(By NekoX-dev) **NOTE: Building on Windows is, unfortunately, not supported. Consider using a Linux VM or dual booting.** **Important:** 1. Checkout all submodules ``` git submodule update --init --recursive ``` 2. Install Android SDK and NDK (default location is $HOME/Android/SDK, otherwise you need to specify $ANDROID_HOME for it) It is recommended to use [AndroidStudio](https://developer.android.com/studio) to install. 3. Install golang and yasm ```shell apt install -y golang-1.16 yasm ``` 4. Install Rust and its stdlib for Android ABIs, and add environment variables for it. It is recommended to use the official script, otherwise you may not find rustup. ```shell curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y echo "source \$HOME/.cargo/env" >> $HOME/.bashrc && source $HOME/.cargo/env rustup install $(cat ss-rust/src/main/rust/shadowsocks-rust/rust-toolchain) rustup default $(cat ss-rust/src/main/rust/shadowsocks-rust/rust-toolchain) rustup target install armv7-linux-androideabi aarch64-linux-android i686-linux-android x86_64-linux-android ``` This step can be skipped if you want to build a `mini` release. 5. Build native dependencies: `./run init libs` 6. Build external libraries and native code: For full release: uncomment lines in settings.gradle `./run libs update` For mini release: ``` ./run libs v2ray ./run libs native # libtmessages.so ``` 1. Fill out `TELEGRAM_APP_ID` and `TELEGRAM_APP_HASH` in `local.properties` 2. Replace TMessagesProj/google-services.json if you want fcm to work. 3. Replace release.keystore with yours and fill out `ALIAS_NAME`, `KEYSTORE_PASS` and `ALIAS_PASS` in `local.properties` if you want a custom sign key. `./gradlew assemble` ---- ## Localization Nagram is forked from Telegram, thus most locales follows the translations of Telegram for Android, checkout . Is Nagram not in your language, or the translation is incorrect or incomplete? Get involved in the translations on our [Weblate](https://hosted.weblate.org/engage/nekox/). ## Thanks - [NekoX](https://github.com/NekoX-Dev/NekoX) - [Pigeongram](https://gitlab.com/JasonKhew96/Nekogram) - [Nullgram](https://github.com/qwq233/Nullgram)