Skip to content

Commit 7c6afc2

Browse files
committed
Updated to 1.4.1
1 parent 63b7f77 commit 7c6afc2

File tree

67 files changed

+2201
-1136
lines changed

Some content is hidden

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

67 files changed

+2201
-1136
lines changed

.gitignore

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
bin/
2-
gen/
3-
/app/build/
1+
.gradle
2+
.idea
3+
build/
4+
app/build/
5+
app/release/
6+
local.properties
7+
gradle.properties

README.md

+37-29
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Wi-Fi Info
2+
23
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
34
[![GitHub release](https://img.shields.io/github/release/TrueMLGPro/Wi-Fi_Info.svg)](https://GitHub.com/TrueMLGPro/Wi-Fi_Info/releases/)
45
[![Github all releases](https://img.shields.io/github/downloads/TrueMLGPro/Wi-Fi_Info/total.svg)](https://github.com/TrueMLGPro/Wi-Fi_Info/releases/)
@@ -13,41 +14,48 @@
1314
[![CodeFactor](https://www.codefactor.io/repository/github/truemlgpro/wi-fi_info/badge/master)](https://www.codefactor.io/repository/github/truemlgpro/wi-fi_info/overview/master)
1415

1516
## Downloads
17+
1618
[![IzzyOnDroid](https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png)](https://apt.izzysoft.de/fdroid/index/apk/com.truemlgpro.wifiinfo)
1719
or
1820
**[Releases](https://github.com/TrueMLGPro/Wi-Fi_Info/releases/)**
1921

2022
## Features
23+
2124
***Shows all possible information about Wi-Fi network you are connected to.***
2225

23-
* __Public IP Address__
24-
* __SSID__
25-
* __BSSID__
26-
* __IPv4 (Local)__
27-
* __IPv6 (Local)__
28-
* __Gateway IP__
29-
* __DNS (1)__
30-
* __DNS (2)__
31-
* __Subnet Mask__
32-
* __Network ID__
33-
* __MAC Address__
34-
* __Network Interface__
35-
* __Loopback Address__
36-
* __Frequency__
37-
* __Network Channel (2.4 GHz & 5 GHz)__
38-
* __RSSI (with percentage!)__
39-
* __Lease Duration__
40-
* __Network Speed__
41-
* __Transmit Link Speed__
42-
* __Receive Link Speed__
43-
* __WPA Supplicant State__
44-
* __Feature Support Detection__
45-
* __URL to IP Converter__
46-
* __Cellular Data IP__
47-
* __Router Setup Page__
48-
* __Ping Tool__
49-
* __LAN Devices Scanner__
50-
* __Port Scanner__
26+
- **Public IP Address**
27+
- **SSID**
28+
- **BSSID**
29+
- **IPv4 (Local)**
30+
- **IPv6 (Local)**
31+
- **Gateway IP**
32+
- **DNS (1)**
33+
- **DNS (2)**
34+
- **Subnet Mask**
35+
- **Network ID**
36+
- **MAC Address**
37+
- **Network Interface**
38+
- **Loopback Address**
39+
- **Frequency**
40+
- **Network Channel (2.4 GHz & 5 GHz)**
41+
- **RSSI (with percentage!)**
42+
- **Lease Duration**
43+
- **Network Speed**
44+
- **Transmit Link Speed**
45+
- **Receive Link Speed**
46+
- **WPA Supplicant State**
47+
- **Feature Support Detection**
48+
49+
## Tools
50+
51+
- **URL to IP Converter**
52+
- **Cellular Data IP**
53+
- **Router Setup Page**
54+
- **Ping Tool**
55+
- **LAN Devices Scanner**
56+
- **Port Scanner**
57+
- **Whois Tool**
5158

5259
## Links
53-
[![Discord Banner 4](https://discordapp.com/api/guilds/601107291915419658/widget.png?style=banner4)](https://discord.com/invite/qxE2DFr)
60+
61+
[![Discord Banner 4](https://discordapp.com/api/guilds/601107291915419658/widget.png?style=banner4)](https://discord.com/invite/qxE2DFr)

app/build.gradle

+56-27
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,70 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 29
5-
buildToolsVersion "29.+"
4+
compileSdkVersion 30
5+
buildToolsVersion "30.0.3"
66

7-
defaultConfig {
8-
applicationId "com.truemlgpro.wifiinfo"
9-
minSdkVersion 21
10-
targetSdkVersion 29
11-
versionCode 1400
12-
versionName "1.4"
13-
}
14-
buildTypes {
15-
release {
16-
minifyEnabled false
7+
signingConfigs {
8+
release {
9+
storeFile file(KEYSTORE_LOCATION)
10+
storePassword KEYSTORE_PASSWORD
11+
keyAlias KEY_ALIAS
12+
keyPassword KEY_PASSWORD
13+
}
14+
}
15+
defaultConfig {
16+
applicationId "com.truemlgpro.wifiinfo"
17+
minSdkVersion 21
18+
targetSdkVersion 30
19+
versionCode 1410
20+
versionName "1.4.1"
21+
}
22+
buildTypes {
23+
release {
24+
debuggable false
25+
minifyEnabled true
26+
shrinkResources true
27+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
28+
signingConfig signingConfigs.release
29+
}
30+
debug {
31+
versionNameSuffix "_dev"
32+
debuggable true
33+
signingConfig signingConfigs.debug
34+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
35+
}
36+
minifiedDebug {
37+
versionNameSuffix "_dev"
38+
debuggable true
39+
minifyEnabled true
40+
shrinkResources true
1741
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1842
}
19-
}
43+
}
44+
lintOptions {
45+
checkReleaseBuilds false
46+
abortOnError false
47+
}
2048
}
2149

2250
dependencies {
23-
compile ('android.arch.core:runtime:+') {
51+
api ('android.arch.core:runtime:+') {
2452
force = true
2553
}
26-
27-
api 'com.android.support:design:26.+'
28-
api 'com.android.support:support-v4:26.+'
29-
api 'com.android.support:appcompat-v7:26.+'
30-
api 'com.android.support:cardview-v7:26.+'
31-
api 'com.android.support:preference-v7:26.+'
32-
api 'com.android.support:preference-v14:26.+'
33-
api 'me.anwarshahriar:calligrapher:1.0'
34-
api 'com.github.bloder:magic:1.1'
35-
api 'com.mikhaellopez:circularimageview:3.2.0'
36-
api 'com.github.clans:fab:1.6.4'
37-
api 'com.github.stealthcopter:AndroidNetworkTools:0.4.5.3'
54+
55+
implementation 'com.android.support:design:27.1.0'
56+
implementation 'com.android.support:support-v4:27.1.0'
57+
implementation 'com.android.support:appcompat-v7:27.1.0'
58+
implementation 'com.android.support:cardview-v7:27.1.0'
59+
implementation 'com.android.support:preference-v7:27.1.0'
60+
implementation 'com.android.support:preference-v14:27.1.0'
61+
implementation 'me.anwarshahriar:calligrapher:1.0'
62+
implementation 'com.github.bloder:magic:1.1'
63+
implementation 'com.mikhaellopez:circularimageview:3.2.0'
64+
implementation 'com.github.clans:fab:1.6.4'
65+
implementation 'com.github.stealthcopter:AndroidNetworkTools:0.4.5.3'
66+
implementation 'com.github.100rabhkr:TCWHOIS:2.0' // Minimum SDK version is 22, ignored in AndroidManifest.xml
3867
// api 'com.getkeepsafe.taptargetview:taptargetview:1.12.0'
3968
// api 'com.pes.materialcolorpicker:library:1.2.5'
40-
api fileTree(dir: 'libs', include: ['*.jar'])
69+
implementation fileTree(dir: 'libs', include: ['*.jar'])
4170
}

app/src/main/AndroidManifest.xml

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.truemlgpro.wifiinfo">
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="com.truemlgpro.wifiinfo">
45

56
<uses-sdk
6-
android:minSdkVersion="21"
7-
android:targetSdkVersion="29" />
7+
android:minSdkVersion="21"
8+
android:targetSdkVersion="30"
9+
tools:overrideLibrary="thecollectiveweb.com.tcwhois" />
810

911
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
1012
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
@@ -87,6 +89,11 @@
8789
android:label="Port Scanner"
8890
android:screenOrientation="portrait">
8991
</activity>
92+
<activity
93+
android:name="com.truemlgpro.wifiinfo.WhoIsToolActivity"
94+
android:label="Whois Tool"
95+
android:screenOrientation="portrait">
96+
</activity>
9097
<activity
9198
android:name="com.truemlgpro.wifiinfo.SettingsActivity"
9299
android:label="Settings"
@@ -106,8 +113,18 @@
106113
android:name=".ConnectionStateService"
107114
android:enabled="true">
108115
</service>
109-
110-
<receiver android:name=".ConnectionStateReceiver">
116+
117+
<service
118+
android:name=".QSTileService"
119+
android:label="IP Address"
120+
android:icon="@drawable/ic_wifi_qs_tile"
121+
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
122+
<intent-filter>
123+
<action android:name="android.service.quicksettings.action.QS_TILE" />
124+
</intent-filter>
125+
</service>
126+
127+
<receiver android:name=".ConnectionStateReceiver">
111128
<intent-filter>
112129
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
113130
</intent-filter>

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

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

3-
import android.content.*;
3+
import android.content.BroadcastReceiver;
4+
import android.content.Context;
5+
import android.content.Intent;
46

57
public class ActionButtonReceiver extends BroadcastReceiver
68
{

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

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

3-
import android.content.*;
3+
import android.content.BroadcastReceiver;
4+
import android.content.Context;
5+
import android.content.Intent;
46

57
public class BootReceiver extends BroadcastReceiver
68
{

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

+45-32
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
11
package com.truemlgpro.wifiinfo;
22

3-
import android.content.*;
4-
import android.net.*;
5-
import android.os.*;
6-
import android.support.v7.app.*;
7-
import android.support.v7.widget.*;
8-
import android.view.*;
9-
import android.widget.*;
10-
import com.github.clans.fab.*;
11-
import java.io.*;
12-
import java.net.*;
13-
import java.util.*;
14-
import me.anwarshahriar.calligrapher.*;
15-
3+
import android.content.BroadcastReceiver;
4+
import android.content.Context;
5+
import android.content.Intent;
6+
import android.content.IntentFilter;
7+
import android.net.ConnectivityManager;
8+
import android.net.NetworkInfo;
9+
import android.os.AsyncTask;
10+
import android.os.Bundle;
11+
import android.os.Handler;
12+
import android.os.Looper;
13+
import android.support.v7.app.ActionBar;
14+
import android.support.v7.app.AppCompatActivity;
15+
import android.support.v7.widget.CardView;
1616
import android.support.v7.widget.Toolbar;
17+
import android.view.View;
18+
import android.widget.TextView;
19+
20+
import com.github.clans.fab.FloatingActionButton;
21+
22+
import java.io.IOException;
23+
import java.net.HttpURLConnection;
24+
import java.net.InetAddress;
25+
import java.net.NetworkInterface;
26+
import java.net.URL;
27+
import java.util.Collections;
28+
import java.util.List;
29+
import java.util.Scanner;
30+
31+
import me.anwarshahriar.calligrapher.Calligrapher;
1732

1833
public class CellularDataIPActivity extends AppCompatActivity
1934
{
@@ -27,7 +42,6 @@ public class CellularDataIPActivity extends AppCompatActivity
2742
private FloatingActionButton fab_update_ip;
2843
private ConnectivityManager CM;
2944
private NetworkInfo CellularCheck;
30-
private Handler IPFetchHandler = new Handler();
3145
private String publicIPFetched;
3246
private boolean siteReachable = false;
3347
private Scanner scanner;
@@ -39,17 +53,17 @@ public void onCreate(Bundle savedInstanceState)
3953
Boolean keyTheme = new SharedPreferencesManager(getApplicationContext()).retrieveBoolean(SettingsActivity.KEY_PREF_SWITCH, MainActivity.darkMode);
4054
Boolean keyAmoledTheme = new SharedPreferencesManager(getApplicationContext()).retrieveBoolean(SettingsActivity.KEY_PREF_AMOLED_CHECK, MainActivity.amoledMode);
4155

42-
if (keyTheme == true) {
56+
if (keyTheme) {
4357
setTheme(R.style.DarkTheme);
4458
}
4559

46-
if (keyAmoledTheme == true) {
47-
if (keyTheme == true) {
60+
if (keyAmoledTheme) {
61+
if (keyTheme) {
4862
setTheme(R.style.AmoledDarkTheme);
4963
}
5064
}
5165

52-
if (keyTheme == false) {
66+
if (!keyTheme) {
5367
setTheme(R.style.LightTheme);
5468
}
5569

@@ -77,21 +91,21 @@ public void onCreate(Bundle savedInstanceState)
7791
actionbar.setElevation(20);
7892

7993
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
80-
@Override
81-
public void onClick(View v) {
82-
// Back button pressed
83-
finish();
84-
}
85-
});
94+
@Override
95+
public void onClick(View v) {
96+
// Back button pressed
97+
finish();
98+
}
99+
});
86100

87101
fab_update_ip.setOnClickListener(new View.OnClickListener() {
88-
@Override
89-
public void onClick(View v) {
90-
fab_update_ip.setEnabled(false);
91-
PublicIPRunnable runnableIP = new PublicIPRunnable();
92-
new Thread(runnableIP).start();
93-
}
94-
});
102+
@Override
103+
public void onClick(View v) {
104+
fab_update_ip.setEnabled(false);
105+
PublicIPRunnable runnableIP = new PublicIPRunnable();
106+
new Thread(runnableIP).start();
107+
}
108+
});
95109

96110
checkCellularConnectivity();
97111
}
@@ -132,7 +146,6 @@ public String getPublicIPAddress() {
132146
}
133147

134148
class PublicIPRunnable implements Runnable {
135-
136149
@Override
137150
public void run() {
138151
new AsyncTask<String, Void, Void>() {

0 commit comments

Comments
 (0)