update Compilation Guide & add yasm checker
This commit is contained in:
parent
d3511e568b
commit
4a1e66b96b
13
README.md
13
README.md
@ -87,18 +87,16 @@ Consider using a Linux VM or dual booting.**
|
|||||||
|
|
||||||
0. Checkout all submodules
|
0. Checkout all submodules
|
||||||
```
|
```
|
||||||
git submodule init
|
git submodule update --init --recursive
|
||||||
git submodule update
|
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Install Android SDK and NDK (default location is $HOME/Android/SDK, otherwise you need to specify $ANDROID_HOME for it)
|
1. 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.
|
It is recommended to use [AndroidStudio](https://developer.android.com/studio) to install.
|
||||||
|
|
||||||
2. Install golang ( 1.16 ).
|
2. Install golang and yasm
|
||||||
```shell
|
```shell
|
||||||
# debian sid
|
apt install -y golang-1.16 yasm
|
||||||
apt install -y golang-1.16
|
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Install Rust and its stdlib for Android ABIs, and add environment variables for it.
|
3. Install Rust and its stdlib for Android ABIs, and add environment variables for it.
|
||||||
@ -115,10 +113,7 @@ rustup target install armv7-linux-androideabi aarch64-linux-android i686-linux-a
|
|||||||
```
|
```
|
||||||
|
|
||||||
4. Build native dependencies: `./run init libs`
|
4. Build native dependencies: `./run init libs`
|
||||||
5. Build external libraries and native code:
|
5. Build external libraries and native code: `./run libs update`
|
||||||
|
|
||||||
`./run libs update`
|
|
||||||
|
|
||||||
6. Fill out `TELEGRAM_APP_ID` and `TELEGRAM_APP_HASH` in `local.properties`
|
6. Fill out `TELEGRAM_APP_ID` and `TELEGRAM_APP_HASH` in `local.properties`
|
||||||
7. Replace TMessagesProj/google-services.json if you want fcm to work.
|
7. Replace TMessagesProj/google-services.json if you want fcm to work.
|
||||||
8. 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.
|
8. 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.
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
source "bin/init/env.sh"
|
source "bin/init/env.sh"
|
||||||
|
|
||||||
|
yasm --version || exit 1
|
||||||
|
|
||||||
cd TMessagesProj/jni || exit 1
|
cd TMessagesProj/jni || exit 1
|
||||||
git submodule update --init libvpx
|
git submodule update --init libvpx
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user