# rttys-android **Repository Path**: NingOpenSource/rttys-android ## Basic Information - **Project Name**: rttys-android - **Description**: rttys的android编译脚本 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: https://gitee.com/zhaojh329/rttys - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-24 - **Last Updated**: 2021-09-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rttys-android #### 介绍 rttys的android编译脚本 #### 编译 1. 下载[rttys](https://gitee.com/zhaojh329/rttys)代码 ```bash ./build.sh download ``` 1. 配置`ANDROID_HOME` ```bash export ANDROID_HOME=/home/${USER}/Android/Sdk ``` 1. 打包`web`页面 ```bash ./build.sh web ``` 1. 开始编译 ```bash # android 21 # 编译所有架构 ./build.sh android-all 21 # 仅编译arm ./build.sh android-arm 21 # 仅编译arm64 ./build.sh android-arm64 21 # 仅编译x86 ./build.sh android-x86 21 # 仅编译x86_64 ./build.sh android-x86_64 21 # desktop # 所有 ./build.sh all # 仅linux ./build.sh linux # 仅mac os ./build.sh darwin # 仅windows ./build.sh windows ```