Skip to content

Commit 2c1dba8

Browse files
update dependencies
1 parent 8b3a4ee commit 2c1dba8

5 files changed

Lines changed: 52 additions & 9 deletions

File tree

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ apply {
3232
dependencies {
3333
// Compile Build Dependencies
3434
implementation fileTree(include: ["*.jar"], dir: "libs")
35-
implementation 'com.google.android.material:material:1.12.0'
35+
implementation 'com.google.android.material:material:1.13.0'
3636
implementation 'androidx.annotation:annotation:1.9.1'
3737
implementation 'androidx.appcompat:appcompat:1.7.1'
3838
implementation 'androidx.collection:collection-ktx:1.5.0'
3939
implementation 'androidx.core:core-ktx:1.17.0'
4040
implementation 'androidx.core:core-splashscreen:1.0.1'
4141
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
42-
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.3'
42+
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.4'
4343
implementation 'androidx.media:media:1.7.1'
4444
implementation 'androidx.preference:preference-ktx:1.2.1'
4545
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
@@ -48,13 +48,13 @@ dependencies {
4848
testImplementation 'androidx.test.ext:junit:1.3.0'
4949
testImplementation 'com.googlecode.junit-toolbox:junit-toolbox:2.4'
5050
testImplementation 'junit:junit:4.13.2'
51-
testImplementation 'org.mockito:mockito-core:5.19.0'
51+
testImplementation 'org.mockito:mockito-core:5.20.0'
5252
testImplementation 'org.mockito.kotlin:mockito-kotlin:6.0.0'
5353
testImplementation 'org.robolectric:robolectric:4.16'
5454
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
5555
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
5656
testImplementation 'org.slf4j:slf4j-simple:2.0.17'
57-
testImplementation 'org.assertj:assertj-core:3.27.4'
57+
testImplementation 'org.assertj:assertj-core:3.27.5'
5858
// Android Test Dependencies
5959
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
6060
androidTestImplementation 'androidx.test.ext:junit-ktx:1.3.0'

app/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Build Properties
2-
#Fri Aug 29 17:20:31 EDT 2025
3-
version_build=29
2+
#Thu Sep 04 07:01:34 EDT 2025
3+
version_build=30
44
version_major=3
55
version_minor=2
66
version_patch=1

app/jacoco.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
jacoco {
20-
toolVersion = "0.8.12"
20+
toolVersion = "0.8.13"
2121
}
2222

2323
def executionPath = 'outputs/unit_test_code_coverage/debugUnitTest/testDebugUnitTest.exec'

build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,18 @@
2020

2121
buildscript {
2222
ext {
23-
kotlin_version = '2.2.10'
23+
kotlin_version = '2.2.20'
2424
}
2525
repositories {
2626
google()
2727
mavenCentral()
28+
gradlePluginPortal() // Added for plugin resolution
2829
}
2930
dependencies {
30-
classpath 'com.android.tools.build:gradle:8.12.2'
31+
classpath 'com.android.tools.build:gradle:8.13.0'
3132
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3233
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
34+
classpath "com.github.ben-manes:gradle-versions-plugin:0.52.0"
3335
}
3436
}
3537

@@ -51,3 +53,5 @@ allprojects {
5153
tasks.register('clean', Delete) {
5254
delete rootProject.layout.buildDirectory
5355
}
56+
57+
apply from: "dependencyUpdates.gradle"

dependencyUpdates.gradle

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* WiFiAnalyzer
3+
* Copyright (C) 2015 - 2025 VREM Software Development <VREMSoftwareDevelopment@gmail.com>
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>
17+
*/
18+
19+
apply plugin: "com.github.ben-manes.versions"
20+
21+
// Determines if a version string is non-stable (alpha, beta, etc.)
22+
def STABLE_KEYWORDS = ['RELEASE', 'FINAL', 'GA']
23+
def NON_STABLE_REGEX = /(?i)[.-](alpha|beta|rc|cr|m|preview|b|ea)[.\d-]*/
24+
25+
def isNonStable = { String version ->
26+
if (!version) return true // Treat null/empty as non-stable
27+
def upperVersion = version.toUpperCase()
28+
if (STABLE_KEYWORDS.any { upperVersion.contains(it) }) {
29+
return false
30+
}
31+
version ==~ NON_STABLE_REGEX
32+
}
33+
34+
dependencyUpdates {
35+
revision = 'release' // Only show stable versions in the report
36+
rejectVersionIf {
37+
isNonStable(it.candidate.version)
38+
}
39+
}

0 commit comments

Comments
 (0)