From 86f90f4d2709194c7537e7be4f4a6d4f379adbd4 Mon Sep 17 00:00:00 2001
From: fatedier <fatedier@gmail.com>
Date: Thu, 21 Mar 2024 19:38:18 +0800
Subject: [PATCH] package.sh add android (#4094)

---
 Release.md | 24 ------------------------
 package.sh |  2 +-
 2 files changed, 1 insertion(+), 25 deletions(-)

diff --git a/Release.md b/Release.md
index 9682800f..8b137891 100644
--- a/Release.md
+++ b/Release.md
@@ -1,25 +1 @@
-### Features
 
-* Support range ports mapping in TOML/YAML/JSON configuration file by using go template syntax.
-
-  For example:
-
-  ```
-  {{- range $_, $v := parseNumberRangePair "6000-6006,6007" "6000-6006,6007" }}
-  [[proxies]]
-  name = "tcp-{{ $v.First }}"
-  type = "tcp"
-  localPort = {{ $v.First }}
-  remotePort = {{ $v.Second }}
-  {{- end }}
-  ```
-
-  This will create 8 proxies such as `tcp-6000, tcp-6001, ... tcp-6007`.
-
-* Health check supports custom request headers.
-* Enable compatibility mode for the Android system to solve the issues of incorrect log time caused by time zone problems and default DNS resolution failures.
-
-### Fixes
-
-* Fix the issue of incorrect interval time for rotating the log by day.
-* Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
diff --git a/package.sh b/package.sh
index 9a6290db..8d16f72a 100755
--- a/package.sh
+++ b/package.sh
@@ -17,7 +17,7 @@ make -f ./Makefile.cross-compiles
 rm -rf ./release/packages
 mkdir -p ./release/packages
 
-os_all='linux windows darwin freebsd'
+os_all='linux windows darwin freebsd android'
 arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
 
 cd ./release