Skip to content

Commit 56cb303

Browse files
Merge branch 'feature'
2 parents cc429d1 + 0109506 commit 56cb303

File tree

324 files changed

+1368
-768
lines changed

Some content is hidden

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

324 files changed

+1368
-768
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jdk: oraclejdk8
55
android:
66
components:
77
- tools
8-
- build-tools-26.0.3
9-
- android-26
8+
- build-tools-27.0.3
9+
- android-27
1010
- extra-google-m2repository
1111
- extra-android-m2repository
1212
script:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,16 @@ This is the official repository of WiFi Analyzer.
4949
* Export access points details
5050
* Dark or Light theme available
5151
* Pause/Resume scanning
52-
* Swipe left/right at the bottom of the screen to navigate to the next/previous screen
5352
* Available filters: WiFi band, Signal strength, Security and SSID
53+
* Vendor/OUI Database Lookup
5454

5555
**Please note WiFi Analyzer is not a WiFi password cracking or phishing tool.**
5656

5757

5858
## Usage Tips
5959
* Tap the title bar to switch between 2.4 and 5 GHz WiFi band.
6060
* Swipe to manually refresh screen content.
61+
* Swipe left/right at the bottom of the screen to navigate to the next/previous screen
6162
* SSID with (***) means it is hidden.
6263
* Access Point security: <img src="https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer/raw/master/app/src/main/res/drawable-hdpi/ic_lock_black_18dp.png" alt="WPA2/WPA" height="20"> WPA2/WPA; <img src="https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer/raw/master/app/src/main/res/drawable-hdpi/ic_lock_outline_black_18dp.png" alt="WEP/WPS" height="20"> WEP/WPS; <img src="https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer/raw/master/app/src/main/res/drawable-hdpi/ic_lock_open_black_18dp.png" alt="Disabled" height="20"> Disabled
6364
* Saved networks <img src="https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer/raw/master/app/src/main/res/drawable-hdpi/ic_tag_faces_black_18dp.png" alt="Saved Networks" height="20">

app/build.gradle

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* WiFiAnalyzer
3-
* Copyright (C) 2017 VREM Software Development <[email protected]>
3+
* Copyright (C) 2018 VREM Software Development <[email protected]>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -20,11 +20,11 @@ apply plugin: 'com.android.application'
2020
apply plugin: 'jacoco-android'
2121

2222
android {
23-
compileSdkVersion 26
24-
buildToolsVersion '26.0.3'
23+
compileSdkVersion 27
24+
buildToolsVersion '27.0.3'
2525

2626
defaultConfig {
27-
applicationId "com.vrem.wifianalyzer"
27+
applicationId "com.vrem.wifianalyzer.BETA"
2828
minSdkVersion 16
2929
targetSdkVersion 22
3030
versionCode
@@ -35,10 +35,13 @@ android {
3535
buildTypes {
3636
release {
3737
minifyEnabled true
38+
shrinkResources true
3839
proguardFiles getDefaultProguardFile('proguard-android.txt')
3940
signingConfig
4041
}
4142
debug {
43+
minifyEnabled false
44+
shrinkResources false
4245
debuggable true
4346
testCoverageEnabled true
4447
}
@@ -59,6 +62,10 @@ android {
5962
}
6063
}
6164
}
65+
66+
lintOptions {
67+
disable 'GoogleAppIndexingWarning'
68+
}
6269
}
6370

6471
jacoco {
@@ -86,8 +93,8 @@ if (project.hasProperty('keyAlias')) {
8693
dependencies {
8794
// Compile Build Dependencies
8895
implementation fileTree(include: ['*.jar'], dir: 'libs')
89-
implementation 'com.android.support:appcompat-v7:26.1.0'
90-
implementation 'com.android.support:design:26.1.0'
96+
implementation 'com.android.support:appcompat-v7:27.0.2'
97+
implementation 'com.android.support:design:27.0.2'
9198
implementation 'org.apache.commons:commons-lang3:3.7'
9299
implementation 'org.apache.commons:commons-collections4:4.1'
93100
implementation 'com.jjoe64:graphview:4.2.1'
@@ -96,7 +103,7 @@ dependencies {
96103
testImplementation 'org.powermock:powermock-module-junit4:1.7.3'
97104
testImplementation 'org.powermock:powermock-api-mockito2:1.7.3'
98105
testImplementation 'com.googlecode.junit-toolbox:junit-toolbox:2.4'
99-
testImplementation 'org.robolectric:robolectric:3.5.1'
106+
testImplementation 'org.robolectric:robolectric:3.6.1'
100107
testImplementation 'org.robolectric:shadows-support-v4:3.4-rc2'
101108
// Android Test Dependencies
102109
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2', {

app/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Build Properties
2-
#Sun Nov 19 14:09:54 EST 2017
2+
#Sat Jan 06 11:19:38 EST 2018
33
version_minor=8
4-
version_build=0
4+
version_build=10
55
version_patch=8
66
version_store=34
77
version_major=1

app/src/androidTest/java/com/vrem/wifianalyzer/Filter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* WiFiAnalyzer
3-
* Copyright (C) 2017 VREM Software Development <[email protected]>
3+
* Copyright (C) 2018 VREM Software Development <[email protected]>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

app/src/androidTest/java/com/vrem/wifianalyzer/InstrumentedUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* WiFiAnalyzer
3-
* Copyright (C) 2017 VREM Software Development <[email protected]>
3+
* Copyright (C) 2018 VREM Software Development <[email protected]>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

app/src/androidTest/java/com/vrem/wifianalyzer/MainInstrumentedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* WiFiAnalyzer
3-
* Copyright (C) 2017 VREM Software Development <[email protected]>
3+
* Copyright (C) 2018 VREM Software Development <[email protected]>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

app/src/androidTest/java/com/vrem/wifianalyzer/Navigation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* WiFiAnalyzer
3-
* Copyright (C) 2017 VREM Software Development <[email protected]>
3+
* Copyright (C) 2018 VREM Software Development <[email protected]>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

app/src/androidTest/java/com/vrem/wifianalyzer/Scanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* WiFiAnalyzer
3-
* Copyright (C) 2017 VREM Software Development <[email protected]>
3+
* Copyright (C) 2018 VREM Software Development <[email protected]>
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
~ WiFiAnalyzer
4-
~ Copyright (C) 2017 VREM Software Development <[email protected]>
4+
~ Copyright (C) 2018 VREM Software Development <[email protected]>
55
~
66
~ This program is free software: you can redistribute it and/or modify
77
~ it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)