Skip to content

Commit 91a2ac6

Browse files
authored
Updated to 1.6
Merge pull request #49 from TrueMLGPro/pre-1.6
2 parents fb46839 + 67a9217 commit 91a2ac6

File tree

229 files changed

+6664
-4621
lines changed

Some content is hidden

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

229 files changed

+6664
-4621
lines changed

README.md

+29-21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<h1 align="center">Wi-Fi Info</h1>
22

3+
<p align="center">A powerful network toolset packed into an Android app, which gathers and displays the information about the Wi-Fi network you are connected to!</p>
4+
5+
---
6+
<br>
7+
38
<p align="center">
49
<a href="https://github.com/TrueMLGPro/Wi-Fi_Info/releases/">
510
<img src="https://img.shields.io/github/release/TrueMLGPro/Wi-Fi_Info.svg?style=for-the-badge" alt="GitHub latest release">
@@ -41,6 +46,9 @@
4146
<h2>Downloads</h2>
4247

4348
<p align="center">
49+
<a href="https://play.google.com/store/apps/details?id=com.truemlgpro.wifiinfo">
50+
<img src="https://github.com/TrueMLGPro/Wi-Fi_Info/assets/38999995/7a699ba7-5c7e-4e9f-a65a-0a8d2c596ffb" alt="Play Store">
51+
</a>
4452
<a href="https://apt.izzysoft.de/fdroid/index/apk/com.truemlgpro.wifiinfo">
4553
<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="IzzyOnDroid">
4654
</a>
@@ -50,48 +58,48 @@
5058

5159
<h2>Features</h2>
5260

53-
<p><strong><em>Shows all possible information about Wi-Fi network you are connected to.</em></strong></p>
61+
<p><em>Shows all possible information about Wi-Fi network you are connected to.</em></p>
5462
<ul>
5563
<li><strong>Public IP Address</strong></li>
56-
<li><strong>SSID</strong></li>
57-
<li><strong>BSSID</strong></li>
5864
<li><strong>IPv4 (Local)</strong></li>
5965
<li><strong>IPv6 (Local)</strong></li>
66+
<li><strong>SSID</strong></li>
67+
<li><strong>BSSID</strong></li>
6068
<li><strong>Gateway IP</strong></li>
69+
<li><strong>Wi-Fi Standard (Android 11+)</strong></li>
70+
<li><strong>Frequency</strong></li>
71+
<li><strong>Network Channel</strong></li>
72+
<li><strong>RSSI (in dBm and in percentage)</strong></li>
73+
<li><strong>Estimated distance to Wi-Fi signal source</strong></li>
74+
<li><strong>IP Lease Duration</strong></li>
75+
<li><strong>Network Speed</strong></li>
76+
<li><strong>Transmitted and Received data (since boot)</strong></li>
6177
<li><strong>DNS (1)</strong></li>
6278
<li><strong>DNS (2)</strong></li>
6379
<li><strong>Subnet Mask</strong></li>
80+
<li><strong>Broadcast Address</strong></li>
6481
<li><strong>Network ID</strong></li>
6582
<li><strong>MAC Address</strong></li>
6683
<li><strong>Network Interface</strong></li>
6784
<li><strong>Loopback Address</strong></li>
68-
<li><strong>Frequency</strong></li>
69-
<li><strong>Network Channel (2.4 GHz &amp; 5 GHz)</strong></li>
70-
<li><strong>RSSI (with percentage!)</strong></li>
71-
<li><strong>Lease Duration</strong></li>
72-
<li><strong>Network Speed</strong></li>
73-
<li><strong>Transmit Link Speed</strong></li>
74-
<li><strong>Receive Link Speed</strong></li>
75-
<li><strong>WPA Supplicant State</strong></li>
76-
<li><strong>Feature Support Detection</strong></li>
85+
<li><strong>and more!</strong></li>
7786
</ul>
7887

7988
<h2>Tools</h2>
8089

8190
<ul>
82-
<li><strong>URL to IP Converter</strong></li>
83-
<li><strong>Cellular Data IP</strong></li>
84-
<li><strong>Router Setup Tool</strong></li>
85-
<li><strong>Ping Tool</strong></li>
86-
<li><strong>LAN Devices Scanner</strong></li>
87-
<li><strong>Port Scanner</strong></li>
88-
<li><strong>Whois Tool</strong></li>
89-
<li><strong>DNS Lookup Tool</strong></li>
91+
<li><strong>Cellular Data IP</strong>: allows you to retrieve the IP address assigned to your mobile device when connected to a cellular network.</li>
92+
<li><strong>Router Setup Tool</strong>: this tool makes configuring and managing your Wi-Fi router easier.</li>
93+
<li><strong>Ping Tool</strong>: measures the round-trip time for network packets sent to a remote host.</li>
94+
<li><strong>Subnet Scanner</strong>: scans the subnet to discover devices connected to your local network and displays info such as IP address and MAC address for each discovered device.</li>
95+
<li><strong>Port Scanner</strong>: scans a URL or an IP address for open ports. Supports TCP and UDP scans.</li>
96+
<li><strong>Whois Tool</strong>: provides info such as the domain registrar, registration date, expiration date, name servers, and contact information associated with the domain or IP by querying public WHOIS databases.</li>
97+
<li><strong>DNS Lookup Tool</strong>: allows you to perform DNS lookups of URL or an IP address.</li>
9098
</ul>
9199

92100
<h2>Contribute</h2>
93101

94-
For contributor guidelines see <code><a href="CONTRIBUTING.md">CONTRIBUTING.md</a></code>
102+
For contributor guidelines, see <code><a href="CONTRIBUTING.md">CONTRIBUTING.md</a></code>
95103

96104
<h2>Links</h2>
97105

app/build.gradle

+25-19
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
33
android {
44
namespace "com.truemlgpro.wifiinfo"
55
compileSdk 33
6-
buildToolsVersion '33.0.0'
6+
buildToolsVersion '33.0.2'
77

88
signingConfigs {
99
release {
@@ -21,8 +21,8 @@ android {
2121
applicationId "com.truemlgpro.wifiinfo"
2222
minSdkVersion 21
2323
targetSdkVersion 33
24-
versionCode 1521
25-
versionName "1.5.2.1"
24+
versionCode 1600
25+
versionName "1.6"
2626
}
2727
buildTypes {
2828
release {
@@ -39,37 +39,43 @@ android {
3939
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
4040
}
4141
minifiedDebug {
42-
versionNameSuffix "_dev"
43-
debuggable true
44-
minifyEnabled true
45-
shrinkResources true
42+
versionNameSuffix "_dev_minified"
43+
debuggable true
44+
minifyEnabled true
45+
shrinkResources true
4646
signingConfig signingConfigs.debug
47-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
48-
}
47+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
48+
}
49+
}
50+
applicationVariants.all { variant ->
51+
variant.outputs.all {
52+
outputFileName = "${APP_NAME}_${defaultConfig.versionName}_${variant.buildType.name}.apk"
53+
}
4954
}
5055
lint {
5156
abortOnError false
5257
checkReleaseBuilds false
5358
}
59+
ext {
60+
APP_NAME = "Wi-Fi_Info"
61+
}
5462
}
5563

5664
dependencies {
57-
implementation 'androidx.appcompat:appcompat:1.6.0-rc01'
58-
implementation 'com.google.android.material:material:1.7.0'
59-
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
65+
implementation 'androidx.appcompat:appcompat:1.7.0-alpha01'
66+
implementation 'com.google.android.material:material:1.9.0'
6067
implementation 'androidx.cardview:cardview:1.0.0'
6168
implementation 'androidx.preference:preference:1.2.0'
62-
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
63-
implementation 'androidx.core:core-splashscreen:1.0.0'
69+
implementation 'androidx.core:core-splashscreen:1.0.1'
70+
6471
implementation 'com.github.AnwarShahriar:Calligrapher:master'
65-
implementation 'com.github.bloderxd:MagicButton:1.1'
6672
implementation 'com.mikhaellopez:circularimageview:4.3.1'
67-
implementation 'com.github.sougata-chatterjee:FloatingActionButton:1.7.0'
68-
implementation 'com.github.stealthcopter:AndroidNetworkTools:0.4.5.3'
73+
implementation 'com.github.sougata-chatterjee:FloatingActionButton:1.7.1'
74+
75+
implementation 'com.github.TrueMLGPro:AndroidNetworkTools:76b8feabb6' // Fork of a Kotlin rewrite of stealthcopter/AndroidNetworkTools
6976
implementation 'com.github.100rabhkr:TCWHOIS:master' // Minimum SDK version is 22, ignored in AndroidManifest.xml
7077
implementation 'org.minidns:minidns-hla:1.0.4'
7178
implementation 'org.minidns:minidns-android21:1.0.4'
72-
// api 'com.getkeepsafe.taptargetview:taptargetview:1.12.0'
73-
// api 'com.pes.materialcolorpicker:library:1.2.5'
79+
7480
implementation fileTree(dir: 'libs', include: ['*.jar'])
7581
}

0 commit comments

Comments
 (0)