Android#
Preparation#
-
Install
adb
on macOS/Linux-
Follow the officail website's Command line tools only part, download the zip file according to your OS then unzip it to the your prefered directory such as
~/bin
,~/.local/bin
, or/usr/local/bin
. -
Use package manage tools:
-
-
Root (Optional): Following the LineageOS Wiki according to your Mobile Phone brand and model.
LineageOS#
System Configs#
Softwares#
-
开源应用商店F-Droid 的官方 APK 下载地址,其项目托管在 GitLab 上,这里是它的客户端 Release,安装完成后,根据这个帮助文档 配置 mirror 源以加速访问。
-
[Termux]
-
[KOReader]
-
[NewPipe]
Flutter 开发环境配置(针对 Linux 桌面系统)#
-
获取 Flutter SDK 文件,并解压
-
配置 Flutter 环境变量
-
安装基本软件环境
-
安装 Android Studio SDK
wget -c "https://dl.google.com/android/repository/commandlinetools-linux-9477386_latest.zip" -P ~/Downloads mkdir -pv ~/.android/sdk/cmdline-tools/latest tar xf ~/Downloads/commandlinetools-linux-9477386_latest.zip mv -v cmdline-tools/* ~/.android/sdk/cmdline-tools/latest cd ~/.android/sdk/cmdline-tools/latest/bin ./sdkmanager "platforms;android-33" "system-images;android-33;google_apis;x86_64" "platform-tools" yes | ./sdkmanager --licenses
-
检验 Flutter 环境配置
参考资料