Skip to content

Commit 116f681

Browse files
Merge branch 'feature'
2 parents 005b4ee + 567e224 commit 116f681

File tree

6 files changed

+138
-92
lines changed

6 files changed

+138
-92
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
// Compile Build Dependencies
2828
implementation fileTree(include: ["*.jar"], dir: "libs")
2929
implementation 'com.google.android.material:material:1.6.1'
30-
implementation 'androidx.annotation:annotation:1.3.0'
30+
implementation 'androidx.annotation:annotation:1.4.0'
3131
implementation 'androidx.appcompat:appcompat:1.4.2'
3232
implementation 'androidx.collection:collection-ktx:1.2.0'
3333
implementation 'androidx.core:core-ktx:1.8.0'

app/build.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Build Properties
2-
#Sat Jun 18 09:49:16 EDT 2022
2+
#Sat Jun 25 07:27:24 EDT 2022
33
version_minor=0
4-
version_store=59
5-
version_patch=7
6-
version_build=4
4+
version_store=60
5+
version_patch=8
6+
version_build=1
77
version_major=3

app/src/main/kotlin/com/vrem/wifianalyzer/wifi/accesspoint/ConnectionView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ConnectionView(
4949
val visibility = if (wiFiBand.available()) View.GONE else View.VISIBLE
5050
val textView = mainActivity.findViewById<TextView>(R.id.main_wifi_support)
5151
textView.visibility = visibility
52-
textView.text = wiFiBand.name
52+
textView.text = mainActivity.resources.getString(wiFiBand.textResource)
5353
}
5454

5555
private fun displayNoData(wiFiData: WiFiData) {

0 commit comments

Comments
 (0)