|
12 | 12 | android:required="false" /> |
13 | 13 |
|
14 | 14 | <application |
15 | | - android:name="io.github.xsocks.XsocksApplication" |
| 15 | + android:name=".XsocksApplication" |
16 | 16 | android:allowBackup="true" |
17 | 17 | android:hardwareAccelerated="true" |
18 | 18 | android:icon="@mipmap/ic_launcher" |
19 | 19 | android:label="@string/app_name" |
20 | 20 | android:theme="@style/AppTheme" > |
21 | 21 |
|
22 | 22 | <activity |
23 | | - android:name="io.github.xsocks.ui.MainActivity" |
| 23 | + android:name=".ui.MainActivity" |
24 | 24 | android:label="@string/app_name" |
25 | 25 | android:launchMode="singleTask" > |
26 | 26 | <intent-filter> |
|
30 | 30 | </activity> |
31 | 31 |
|
32 | 32 | <activity |
33 | | - android:name="io.github.xsocks.ui.AboutActivity" |
| 33 | + android:name=".ui.AppManagerActivity" |
| 34 | + android:label="@string/title_activity_app_manager" |
| 35 | + android:parentActivityName=".ui.MainActivity"> |
| 36 | + <intent-filter> |
| 37 | + <action android:name="io.github.xsocks.ui.AppManagerActivity"/> |
| 38 | + <category android:name="android.intent.category.DEFAULT"/> |
| 39 | + </intent-filter> |
| 40 | + </activity> |
| 41 | + |
| 42 | + <activity |
| 43 | + android:name=".ui.AboutActivity" |
34 | 44 | android:label="@string/about" > |
35 | 45 | </activity> |
36 | 46 |
|
37 | 47 | <activity |
38 | | - android:name="io.github.xsocks.ui.XsocksRunnerActivity" |
| 48 | + android:name=".ui.XsocksRunnerActivity" |
39 | 49 | android:launchMode="singleTask" |
40 | 50 | android:theme="@android:style/Theme.NoDisplay" > |
41 | 51 | </activity> |
42 | 52 |
|
43 | 53 | <service |
44 | | - android:name="io.github.xsocks.service.XsocksVpnService" |
| 54 | + android:name=".service.XsocksVpnService" |
45 | 55 | android:enabled="true" |
46 | 56 | android:exported="false" |
47 | 57 | android:label="@string/app_name" |
|
51 | 61 | </intent-filter> |
52 | 62 | </service> |
53 | 63 |
|
54 | | - <receiver android:name="io.github.xsocks.XsocksReceiver" > |
| 64 | + <receiver android:name=".XsocksReceiver" > |
55 | 65 | <intent-filter> |
56 | 66 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
57 | 67 | <action android:name="io.github.xsocks.ACTION_UPDATE_STATE" /> |
|
0 commit comments