-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
417 changed files
with
868 additions
and
694 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -16,24 +16,29 @@ | |
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
*/ | ||
|
||
apply plugin: "com.android.application" | ||
plugins { | ||
id "com.android.application" | ||
id "kotlin-android" | ||
id "kotlin-allopen" | ||
id "jacoco" | ||
} | ||
|
||
apply from: "jacoco.gradle" | ||
apply plugin: "kotlin-android" | ||
apply plugin: "kotlin-allopen" | ||
apply { | ||
from "jacoco.gradle" | ||
} | ||
|
||
// dependencies ------------------------------------------------- | ||
dependencies { | ||
// Compile Build Dependencies | ||
implementation fileTree(include: ["*.jar"], dir: "libs") | ||
implementation 'com.google.android.material:material:1.12.0' | ||
implementation 'androidx.annotation:annotation:1.8.2' | ||
implementation 'androidx.annotation:annotation:1.9.1' | ||
implementation 'androidx.appcompat:appcompat:1.7.0' | ||
implementation 'androidx.collection:collection-ktx:1.4.4' | ||
implementation 'androidx.core:core-ktx:1.13.1' | ||
implementation 'androidx.collection:collection-ktx:1.4.5' | ||
implementation 'androidx.core:core-ktx:1.15.0' | ||
implementation 'androidx.core:core-splashscreen:1.0.1' | ||
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | ||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.6' | ||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7' | ||
implementation 'androidx.media:media:1.7.0' | ||
implementation 'androidx.preference:preference-ktx:1.2.1' | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | ||
|
@@ -42,9 +47,9 @@ dependencies { | |
testImplementation 'androidx.test.ext:junit:1.2.1' | ||
testImplementation 'com.googlecode.junit-toolbox:junit-toolbox:2.4' | ||
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'org.mockito:mockito-core:5.14.1' | ||
testImplementation 'org.mockito:mockito-core:5.14.2' | ||
testImplementation 'org.mockito.kotlin:mockito-kotlin:5.4.0' | ||
testImplementation 'org.robolectric:robolectric:4.13' | ||
testImplementation 'org.robolectric:robolectric:4.14.1' | ||
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version" | ||
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" | ||
testImplementation 'org.slf4j:slf4j-simple:2.0.16' | ||
|
@@ -97,6 +102,7 @@ android { | |
unitTests { | ||
includeAndroidResources true | ||
all { | ||
jvmArgs("-XX:+EnableDynamicAgentLoading") | ||
testLogging { | ||
events "passed", "skipped", "failed", "standardOut", "standardError" | ||
outputs.upToDateWhen { false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -16,10 +16,8 @@ | |
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
*/ | ||
|
||
apply plugin: "jacoco" | ||
|
||
jacoco { | ||
toolVersion = "0.8.11" | ||
toolVersion = "0.8.12" | ||
} | ||
|
||
def executionPath = 'outputs/unit_test_code_coverage/debugUnitTest/testDebugUnitTest.exec' | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/kotlin/com/vrem/wifianalyzer/FilterInstrumentedTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/kotlin/com/vrem/wifianalyzer/InstrumentedTestUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/kotlin/com/vrem/wifianalyzer/MainInstrumentedTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/kotlin/com/vrem/wifianalyzer/NavigationInstrumentedTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/kotlin/com/vrem/wifianalyzer/ScannerInstrumentedTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
~ WiFiAnalyzer | ||
~ Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
~ Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
~ | ||
~ This program is free software: you can redistribute it and/or modify | ||
~ it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/java/com/jjoe64/graphview/series/TitleLineGraphSeries.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/MainAcitvityBackPressed.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/about/AboutFragment.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/export/ExportIntent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/NavigationGroup.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/NavigationMenu.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/NavigationMenuControl.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/NavigationMenuController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/availability/BottomNav.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/availability/Filter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/availability/NavigationOption.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/availability/NavigationOptions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/availability/ScannerSwitch.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/availability/WiFiSwitch.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/main/kotlin/com/vrem/wifianalyzer/navigation/items/ExportItem.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* WiFiAnalyzer | ||
* Copyright (C) 2015 - 2024 VREM Software Development <[email protected]> | ||
* Copyright (C) 2015 - 2025 VREM Software Development <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
Oops, something went wrong.