Skip to content

Commit e8f344f

Browse files
committed
Updated to 1.4
1 parent 20ab9d7 commit e8f344f

File tree

84 files changed

+5299
-1185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+5299
-1185
lines changed

README.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
[![GitHub issues](https://img.shields.io/github/issues/TrueMLGPro/Wi-Fi_Info.svg)](https://github.com/TrueMLGPro/Wi-Fi_Info/issues/)
77
[![GitHub issues-closed](https://img.shields.io/github/issues-closed/TrueMLGPro/Wi-Fi_Info.svg)](https://GitHub.com/TrueMLGPro/Wi-Fi_Info/issues?q=is:issue+is:closed)
88
[![Website truemlgpro.github.io](https://img.shields.io/website-up-down-green-red/https/truemlgpro.github.io/Wi-Fi_Info.svg)](https://truemlgpro.github.io/Wi-Fi_Info/)
9+
910
[![Discord](https://img.shields.io/discord/601107291915419658.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/qxE2DFr)
1011
[![Patreon](https://img.shields.io/badge/dynamic/json?color=ff424d&logo=patreon&logoColor=ffffff&label=&labelColor=fa2530&query=data.attributes.patron_count&suffix=%20patrons&url=https%3A%2F%2Fwww.patreon.com%2Fapi%2Fcampaigns%2F5328784)](https://patreon.com/truemlgpro)
1112

@@ -42,17 +43,11 @@ or
4243
* __WPA Supplicant State__
4344
* __Feature Support Detection__
4445
* __URL to IP Converter__
45-
* __Cellular Data IP__ **[Coming Soon]**
46-
* __Router Setup Page__ **[Coming Soon]**
47-
* __Ping Tool__ **[Coming Soon]**
48-
* __LAN Devices Scanner__ **[Coming Soon]**
49-
* __Port Scanner__ **[Coming Soon]**
46+
* __Cellular Data IP__
47+
* __Router Setup Page__
48+
* __Ping Tool__
49+
* __LAN Devices Scanner__
50+
* __Port Scanner__
5051

5152
## Links
5253
[Discord Server](https://discord.gg/qxE2DFr)
53-
54-
# TODO List
55-
56-
- [ ] Add Notification Layout Customizer **(1.4) (maybe)**
57-
- [ ] Add Wi-Fi password manager **(1.4) (maybe)**
58-
- [ ] Create a home screen widget with network info **(1.4) (maybe)**

app/build.gradle

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.truemlgpro.wifiinfo"
99
minSdkVersion 21
1010
targetSdkVersion 29
11-
versionCode 1330
12-
versionName "1.3.3"
11+
versionCode 1400
12+
versionName "1.4"
1313
}
1414
buildTypes {
1515
release {
@@ -29,11 +29,13 @@ dependencies {
2929
api 'com.android.support:appcompat-v7:26.+'
3030
api 'com.android.support:cardview-v7:26.+'
3131
api 'com.android.support:preference-v7:26.+'
32+
api 'com.android.support:preference-v14:26.+'
3233
api 'me.anwarshahriar:calligrapher:1.0'
3334
api 'com.github.bloder:magic:1.1'
3435
api 'com.mikhaellopez:circularimageview:3.2.0'
3536
api 'com.github.clans:fab:1.6.4'
36-
// api 'com.pes.materialcolorpicker:library:1.2.5'
37+
api 'com.github.stealthcopter:AndroidNetworkTools:0.4.5.3'
3738
// api 'com.getkeepsafe.taptargetview:taptargetview:1.12.0'
39+
// api 'com.pes.materialcolorpicker:library:1.2.5'
3840
api fileTree(dir: 'libs', include: ['*.jar'])
3941
}

app/src/main/AndroidManifest.xml

+58-10
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
1717

1818
<application
19-
android:icon="@mipmap/ic_launcher"
19+
android:icon="@mipmap/ic_launcher"
2020
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">
2425

2526
<activity
2627
android:name="com.truemlgpro.wifiinfo.SplashActivity"
@@ -43,27 +44,57 @@
4344
</activity>
4445
<activity
4546
android:name="com.truemlgpro.wifiinfo.DiscordServersActivity"
46-
android:label="Discord Servers"
47+
android:label="Discord Server"
4748
android:screenOrientation="portrait">
4849
</activity>
4950
<activity
5051
android:name="com.truemlgpro.wifiinfo.SupportersActivity"
5152
android:label="Supporters"
5253
android:screenOrientation="portrait">
5354
</activity>
55+
<activity
56+
android:name="com.truemlgpro.wifiinfo.ToolsActivity"
57+
android:label="Tools"
58+
android:screenOrientation="portrait">
59+
</activity>
5460
<activity
5561
android:name="com.truemlgpro.wifiinfo.URLtoIPActivity"
5662
android:label="URL to IP"
5763
android:screenOrientation="portrait">
5864
</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>
5990
<activity
6091
android:name="com.truemlgpro.wifiinfo.SettingsActivity"
6192
android:label="Settings"
6293
android:screenOrientation="portrait"
6394
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" />
6798
</activity>
6899

69100
<service
@@ -73,8 +104,7 @@
73104

74105
<service
75106
android:name=".ConnectionStateService"
76-
android:enabled="true"
77-
android:process=":ConnectionStateProcess">
107+
android:enabled="true">
78108
</service>
79109

80110
<receiver android:name=".ConnectionStateReceiver">
@@ -83,6 +113,24 @@
83113
</intent-filter>
84114
</receiver>
85115

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+
86134
<receiver android:name=".BootReceiver">
87135
<intent-filter>
88136
<action android:name="android.intent.action.BOOT_COMPLETED" />

app/src/main/java/com/truemlgpro/wifiinfo/ActionButtonReceiver.java

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package com.truemlgpro.wifiinfo;
22

3-
import android.app.*;
43
import android.content.*;
5-
import android.os.*;
64

75
public class ActionButtonReceiver extends BroadcastReceiver
86
{

0 commit comments

Comments
 (0)