Skip to content

Commit 55dd36c

Browse files
Merge branch 'main' into feature/export-security-types-column
2 parents 92591da + bd25b4d commit 55dd36c

File tree

12 files changed

+46
-23
lines changed

12 files changed

+46
-23
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,13 @@ body:
7373
attributes:
7474
label: Additional context
7575
description: Any other information (network setup, nearby APs, whether it occurs on other devices)
76+
- type: dropdown
77+
id: ai_assistance
78+
attributes:
79+
label: AI Assistance
80+
description: Did you use any AI tools (e.g., GitHub Copilot, ChatGPT) to help write this bug report?
81+
options:
82+
- AI tools were used to help write this request
83+
- No AI tools were used
84+
validations:
85+
required: true

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,13 @@ body:
8989
attributes:
9090
label: Screenshots / Mockups / Attachments (optional)
9191
description: Attach screenshots or mockups to illustrate the feature.
92+
- type: dropdown
93+
id: ai_assistance
94+
attributes:
95+
label: AI Assistance
96+
description: Did you use any AI tools (e.g., GitHub Copilot, ChatGPT) to help write this feature request?
97+
options:
98+
- AI tools were used to help write this request
99+
- No AI tools were used
100+
validations:
101+
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ Example test commands:
3434
- [ ] CI checks pass (unit tests, coverage, lint)
3535
- [ ] No sensitive data, keys, or secrets are included
3636

37+
## AI Assistance
38+
- [ ] AI tools were used (Copilot, ChatGPT, Claude, etc.) — please add the **“AI assistance used”** label.
39+
- [ ] No AI tools were used
40+
3741
## Additional context
3842
- Screenshots, logs, or other context that helps reviewers understand the change.
3943
- Migration notes or compatibility considerations (if applicable).

.github/workflows/android-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ on:
88
- '.github/workflows/close-empty-xml.yml'
99
- '.github/workflows/stale.yml'
1010
- '.github/workflows/compare-src.yml'
11+
- '.github/ISSUE_TEMPLATE/**'
1112
pull_request:
1213
paths-ignore:
1314
- '**/*.md'
1415
- '.github/workflows/codeql-analysis.yml'
1516
- '.github/workflows/close-empty-xml.yml'
1617
- '.github/workflows/stale.yml'
1718
- '.github/workflows/compare-src.yml'
19+
- '.github/ISSUE_TEMPLATE/**'
1820
workflow_dispatch: {}
1921

2022
jobs:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ on:
66
- '.github/workflows/close-empty-xml.yml'
77
- '.github/workflows/stale.yml'
88
- '.github/workflows/compare-src.yml'
9+
- '.github/ISSUE_TEMPLATE/**'
910
pull_request:
1011
paths-ignore:
1112
- '**/*.md'
1213
- '.github/workflows/close-empty-xml.yml'
1314
- '.github/workflows/stale.yml'
1415
- '.github/workflows/compare-src.yml'
16+
- '.github/ISSUE_TEMPLATE/**'
1517

1618
jobs:
1719
analyze:

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# AI Use Disclosure
2+
3+
- AI tools (e.g., Copilot, ChatGPT, Claude) may be used for bug reports, feature requests, and pull requests.
4+
- Any AI involvement must be disclosed in the submission.
5+
- Apply the **“AI assistance used”** label when applicable.
6+
- Submitters are responsible for reviewing and validating all AI-generated content.
7+
18
# How to report a bug
29

310
- Please search issues (open and closed) to see the issues has already been reported. - If an issue has already been reported, feel free to add more information to it. Oherwise, create a new issue.

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
id "kotlin-android"
2222
id "kotlin-allopen"
2323
id "jacoco"
24-
id "org.jlleitschuh.gradle.ktlint" version "14.0.1"
24+
id "org.jlleitschuh.gradle.ktlint" version "14.2.0"
2525
}
2626

2727
apply {
@@ -35,8 +35,8 @@ dependencies {
3535
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'
38-
implementation 'androidx.collection:collection-ktx:1.5.0'
39-
implementation 'androidx.core:core-ktx:1.17.0'
38+
implementation 'androidx.collection:collection-ktx:1.6.0'
39+
implementation 'androidx.core:core-ktx:1.18.0'
4040
implementation 'androidx.core:core-splashscreen:1.2.0'
4141
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
4242
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0'
@@ -48,8 +48,8 @@ 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.21.0'
52-
testImplementation 'org.mockito.kotlin:mockito-kotlin:6.2.3'
51+
testImplementation 'org.mockito:mockito-core:5.23.0'
52+
testImplementation 'org.mockito.kotlin:mockito-kotlin:6.3.0'
5353
testImplementation 'org.robolectric:robolectric:4.16.1'
5454
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
5555
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"

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 Jan 30 18:31:23 EST 2026
3-
version_build=5
2+
#Sun Mar 22 17:31:55 EDT 2026
3+
version_build=6
44
version_major=3
55
version_minor=2
66
version_patch=2

app/src/main/res/values-uk/strings.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@
1717
-->
1818

1919
<resources>
20-
<!-- about end -->
21-
<!-- about start -->
22-
<!-- action end -->
23-
<!-- action start -->
24-
<!-- filter end -->
25-
<!-- filter start -->
26-
<!-- security end -->
27-
<!-- security start -->
28-
<!-- settings end -->
29-
<!-- settings start -->
30-
<!-- wifi throttling end -->
31-
<!-- wifi throttling start -->
3220
<string name="about_contributor_title">"Автори"</string>
3321
<string name="about_description_text">"Оптимізація мережі Wi-Fi шляхом перевірки стану Wi-Fi, рівня сигналу і визначення переповнених каналів використовуючи WiFiAnalyzer для Android"</string>
3422
<string name="about_description_title">"Опис:"</string>

build.gradle

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

2121
buildscript {
2222
ext {
23-
kotlin_version = '2.3.0'
23+
kotlin_version = '2.3.20'
2424
}
2525
repositories {
2626
google()
2727
mavenCentral()
2828
gradlePluginPortal() // Added for plugin resolution
2929
}
3030
dependencies {
31-
classpath 'com.android.tools.build:gradle:9.0.0'
31+
classpath 'com.android.tools.build:gradle:9.1.0'
3232
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3333
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
3434
classpath "com.github.ben-manes:gradle-versions-plugin:0.53.0"

0 commit comments

Comments
 (0)