|
16 | 16 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
17 | 17 |
|
18 | 18 | <application
|
19 |
| - android:icon="@mipmap/ic_launcher" |
| 19 | + android:icon="@mipmap/ic_launcher" |
20 | 20 | android:roundIcon="@mipmap/ic_launcher"
|
21 |
| - android:label="@string/app_name" |
22 |
| - android:theme="@style/DarkTheme" |
23 |
| - android:largeHeap="true"> |
| 21 | + android:label="@string/app_name" |
| 22 | + android:theme="@style/DarkTheme" |
| 23 | + android:largeHeap="true" |
| 24 | + android:usesCleartextTraffic="true"> |
24 | 25 |
|
25 | 26 | <activity
|
26 | 27 | android:name="com.truemlgpro.wifiinfo.SplashActivity"
|
|
43 | 44 | </activity>
|
44 | 45 | <activity
|
45 | 46 | android:name="com.truemlgpro.wifiinfo.DiscordServersActivity"
|
46 |
| - android:label="Discord Servers" |
| 47 | + android:label="Discord Server" |
47 | 48 | android:screenOrientation="portrait">
|
48 | 49 | </activity>
|
49 | 50 | <activity
|
50 | 51 | android:name="com.truemlgpro.wifiinfo.SupportersActivity"
|
51 | 52 | android:label="Supporters"
|
52 | 53 | android:screenOrientation="portrait">
|
53 | 54 | </activity>
|
| 55 | + <activity |
| 56 | + android:name="com.truemlgpro.wifiinfo.ToolsActivity" |
| 57 | + android:label="Tools" |
| 58 | + android:screenOrientation="portrait"> |
| 59 | + </activity> |
54 | 60 | <activity
|
55 | 61 | android:name="com.truemlgpro.wifiinfo.URLtoIPActivity"
|
56 | 62 | android:label="URL to IP"
|
57 | 63 | android:screenOrientation="portrait">
|
58 | 64 | </activity>
|
| 65 | + <activity |
| 66 | + android:name="com.truemlgpro.wifiinfo.CellularDataIPActivity" |
| 67 | + android:label="Cellular Data IP" |
| 68 | + android:screenOrientation="portrait"> |
| 69 | + </activity> |
| 70 | + <activity |
| 71 | + android:name="com.truemlgpro.wifiinfo.RouterSetupActivity" |
| 72 | + android:label="Router Setup" |
| 73 | + android:screenOrientation="portrait"> |
| 74 | + </activity> |
| 75 | + <activity |
| 76 | + android:name="com.truemlgpro.wifiinfo.PingActivity" |
| 77 | + android:label="Ping" |
| 78 | + android:screenOrientation="portrait"> |
| 79 | + </activity> |
| 80 | + <activity |
| 81 | + android:name="com.truemlgpro.wifiinfo.LANDevicesScannerActivity" |
| 82 | + android:label="LAN Devices Scanner" |
| 83 | + android:screenOrientation="portrait"> |
| 84 | + </activity> |
| 85 | + <activity |
| 86 | + android:name="com.truemlgpro.wifiinfo.PortScannerActivity" |
| 87 | + android:label="Port Scanner" |
| 88 | + android:screenOrientation="portrait"> |
| 89 | + </activity> |
59 | 90 | <activity
|
60 | 91 | android:name="com.truemlgpro.wifiinfo.SettingsActivity"
|
61 | 92 | android:label="Settings"
|
62 | 93 | android:screenOrientation="portrait"
|
63 | 94 | android:parentActivityName="com.truemlgpro.wifiinfo.MainActivity">
|
64 |
| - <meta-data |
65 |
| - android:name="android.support.PARENT_ACTIVITY" |
66 |
| - android:value="com.truemlgpro.wifiinfo.MainActivity" /> |
| 95 | + <meta-data |
| 96 | + android:name="android.support.PARENT_ACTIVITY" |
| 97 | + android:value="com.truemlgpro.wifiinfo.MainActivity" /> |
67 | 98 | </activity>
|
68 | 99 |
|
69 | 100 | <service
|
|
73 | 104 |
|
74 | 105 | <service
|
75 | 106 | android:name=".ConnectionStateService"
|
76 |
| - android:enabled="true" |
77 |
| - android:process=":ConnectionStateProcess"> |
| 107 | + android:enabled="true"> |
78 | 108 | </service>
|
79 | 109 |
|
80 | 110 | <receiver android:name=".ConnectionStateReceiver">
|
|
83 | 113 | </intent-filter>
|
84 | 114 | </receiver>
|
85 | 115 |
|
| 116 | + <receiver android:name=".WiFiConnectivityReceiver"> |
| 117 | + <intent-filter> |
| 118 | + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 119 | + </intent-filter> |
| 120 | + </receiver> |
| 121 | + |
| 122 | + <receiver android:name=".CellularDataConnectivityReceiver"> |
| 123 | + <intent-filter> |
| 124 | + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 125 | + </intent-filter> |
| 126 | + </receiver> |
| 127 | + |
| 128 | + <receiver android:name=".NetworkConnectivityReceiver"> |
| 129 | + <intent-filter> |
| 130 | + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 131 | + </intent-filter> |
| 132 | + </receiver> |
| 133 | + |
86 | 134 | <receiver android:name=".BootReceiver">
|
87 | 135 | <intent-filter>
|
88 | 136 | <action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
0 commit comments