2
2
3
3
Last release: [ Download] ( https://github.com/dawei101/shadowsocks-android-java/releases )
4
4
5
- ### 关于 About
6
-
7
- 本版本为shadowsocks android版的纯java版本
8
5
9
- 因为实现原理的缘故,会牺牲掉很多功能(比如dns解析).
10
6
This 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)
14
8
15
9
Most 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
-
20
10
This app inherit Smartproxy's feature: tiny/low power cost/simple operation
21
11
22
- shadowsocks设置格式:
23
12
24
13
shadowsocks settings format
25
14
@@ -28,21 +17,61 @@ ss://method:password@host:port
28
17
ss://base64encode(method:password@host:port)
29
18
```
30
19
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.
32
21
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:
34
28
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代理格式即可.
35
68
http代理格式
36
69
37
- http proxy foramt:
38
70
```
39
71
http://(username:passsword)@host:port
40
72
```
41
-
42
73
支持的加密类型:
43
74
44
- Support methods of encryption:
45
-
46
75
```
47
76
bf-cfb
48
77
seed-cfb
@@ -60,16 +89,15 @@ chacha20-ietf
60
89
rc4-md5
61
90
```
62
91
63
- ### 兄弟版本 Brother version
92
+ ### 兄弟版本
93
+ Brother version
64
94
65
95
##### [ Shadowsocks android(Scala)] ( https://github.com/shadowsocks/shadowsocks-android )
66
96
67
- Scala version is high threshold to lots of developer, so it's a better choice to choose this version.
68
-
69
97
### 作者同系列版本
70
-
71
98
[ shadowsocks 桌面版,一份代码完美支持windows,mac osx,linux] ( https://github.com/dawei101/tongsheClient.shadowsocks-go )
72
99
100
+
73
101
#### LICENSE
74
102
75
103
[ Apache License] ( ./LICENSE )
0 commit comments