22
33Last release: [ Download] ( https://github.com/dawei101/shadowsocks-android-java/releases )
44
5- ### 关于 About
6-
7- 本版本为shadowsocks android版的纯java版本
85
9- 因为实现原理的缘故,会牺牲掉很多功能(比如dns解析).
106This version of shadowsocks for android is pure java version.
11-
12-
13- 代码多整理自 [ smartproxy] ( https://github.com/hedaode/SmartProxy ) 和 [ shadowsocks-java] ( https://github.com/blakey22/shadowsocks-java )
7+ Beacuse of the way of implementation, some feature would not work (icmp protocol, and correct dns result under command line)
148
159Most code is merged from [ smartproxy] ( https://github.com/hedaode/SmartProxy ) and [ shadowsocks-java] ( https://github.com/blakey22/shadowsocks-java )
16-
17-
18- 本shadowsocks-android的特点继承了SmartProxy的优点: 体积小,耗电低,设置保持最简单的方式
19-
2010This app inherit Smartproxy's feature: tiny/low power cost/simple operation
2111
22- shadowsocks设置格式:
2312
2413shadowsocks settings format
2514
@@ -28,21 +17,61 @@ ss://method:password@host:port
2817ss://base64encode(method:password@host:port)
2918```
3019
31- 其中代码保留了SmartProxy对http(s)代理的支持, 使用时将配置链接填写标准http (s)代理格式即可.
20+ And also it inherited the support of http proxy from Smartproxy , Set the url as stardand http (s) proxy format when use it.
3221
33- And also it inherited the support of http(s) proxy from Smartproxy , Set the url as stardand http(s) proxy format when use it.
22+ http proxy foramt:
23+
24+ ```
25+ http://(username:passsword)@host:port
26+ ```
27+ Support methods of encryption:
3428
29+ ```
30+ bf-cfb
31+ seed-cfb
32+ aes-128-cfb
33+ aes-192-cfb
34+ aes-256-cfb
35+ aes-128-ofb
36+ aes-192-ofb
37+ aes-256-ofb
38+ camellia-128-cfb
39+ camellia-192-cfb
40+ camellia-256-cfb
41+ chacha20
42+ chacha20-ietf
43+ rc4-md5
44+ ```
45+
46+ #### Brother version
47+
48+ [ Shadowsocks android(Scala)] ( https://github.com/shadowsocks/shadowsocks-android )
49+
50+ Scala version is high threshold to lots of developer, so it's a better choice to choose this version.
51+
52+ -----------
53+
54+ ### 关于 About
55+
56+ 本版本为shadowsocks android版的纯java版本
57+ 因为实现原理的缘故,会牺牲掉一些功能(主要是用到icmp协议,以及在命令行下的dns解析的正确地址).
58+
59+ 代码多整理自 [ smartproxy] ( https://github.com/hedaode/SmartProxy ) 和 [ shadowsocks-java] ( https://github.com/blakey22/shadowsocks-java )
60+ 本shadowsocks-android的特点继承了SmartProxy的优点: 体积小,耗电低,设置保持最简单的方式
61+ shadowsocks设置格式:
62+ ```
63+ ss://method:password@host:port
64+ ss://base64encode(method:password@host:port)
65+ ```
66+
67+ 其中代码保留了SmartProxy对http代理的支持, 使用时将配置链接填写标准http代理格式即可.
3568http代理格式
3669
37- http proxy foramt:
3870```
3971http://(username:passsword)@host:port
4072```
41-
4273支持的加密类型:
4374
44- Support methods of encryption:
45-
4675```
4776bf-cfb
4877seed-cfb
@@ -60,16 +89,15 @@ chacha20-ietf
6089rc4-md5
6190```
6291
63- ### 兄弟版本 Brother version
92+ ### 兄弟版本
93+ Brother version
6494
6595##### [ Shadowsocks android(Scala)] ( https://github.com/shadowsocks/shadowsocks-android )
6696
67- Scala version is high threshold to lots of developer, so it's a better choice to choose this version.
68-
6997### 作者同系列版本
70-
7198[ shadowsocks 桌面版,一份代码完美支持windows,mac osx,linux] ( https://github.com/dawei101/tongsheClient.shadowsocks-go )
7299
100+
73101#### LICENSE
74102
75103[ Apache License] ( ./LICENSE )
0 commit comments