Skip to content

Commit 3b26b94

Browse files
committed
55964-elys
1 parent 280e16f commit 3b26b94

File tree

7 files changed

+28
-15
lines changed

7 files changed

+28
-15
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ android {
4242
}
4343

4444
/*
45-
def ndkDir = "D:\\android-sdk\\android-ndk-r27c"
45+
def ndkDir = "D:\\android-sdk\\android-ndk-r27d"
4646
tasks.register('buildNative', Exec) {
4747
commandLine "$ndkDir\\ndk-build.cmd",
4848
'-C', file('src/main/jni').absolutePath,
@@ -134,8 +134,8 @@ dependencies {
134134
implementation 'com.google.android.material:material:1.12.0'
135135
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.2'
136136
implementation 'androidx.cardview:cardview:1.0.0'
137-
implementation 'androidx.core:core-ktx:1.16.0'
138-
implementation 'androidx.media:media:1.7.0'
137+
implementation 'androidx.core:core-ktx:1.17.0'
138+
implementation 'androidx.media:media:1.7.1'
139139
implementation 'androidx.preference:preference-ktx:1.2.1'
140140
implementation 'androidx.recyclerview:recyclerview:1.4.0'
141141
// graphview source code was merged locally into project on 2023-12-30

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2424
xmlns:tools="http://schemas.android.com/tools"
25-
android:versionCode="55963"
26-
android:versionName="55963-elys">
25+
android:versionCode="55964"
26+
android:versionName="55964-elys">
2727

2828
<uses-permission android:name="android.permission.INTERNET" />
2929
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

app/src/main/java/joshuatee/wx/misc/UtilityWfoText.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
package joshuatee.wx.misc
2323

24-
@Suppress("SpellCheckingInspection")
2524
object UtilityWfoText {
2625

2726
val labels = listOf(

app/src/main/java/joshuatee/wx/radar/Metar.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ internal object Metar {
131131
ovcInt
132132
}
133133

134-
@Suppress("KotlinConstantConditions")
135134
val aviationColor = if (visInt > 5 && lowestCig > 3000) {
136135
Color.GREEN
137136
} else if (visInt in 3..5 || lowestCig in 1000..3000) {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99

1010
dependencies {
1111
// https://mvnrepository.com/artifact/com.android.tools.build/gradle
12-
classpath 'com.android.tools.build:gradle:8.11.1'
12+
classpath 'com.android.tools.build:gradle:8.12.1'
1313

1414
// https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0"

doc/ChangeLog.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,28 @@
22

33
# Developer ChangeLog
44

5-
## 55963 2025_07_18
5+
## 55964 2025_08_22
66

7-
* [ADD]
7+
* [ADD] tool/lib updates
8+
9+
```
10+
- def ndkVersion = "android-ndk-r27c"
11+
+ def ndkVersion = "android-ndk-r27d"
12+
```
13+
14+
## 55963 2025_08_22
15+
16+
* [ADD] tool/lib updates
17+
18+
```
19+
- classpath 'com.android.tools.build:gradle:8.11.1'
20+
+ classpath 'com.android.tools.build:gradle:8.12.1'
21+
22+
- implementation 'androidx.core:core-ktx:1.16.0'
23+
- implementation 'androidx.media:media:1.7.0'
24+
+ implementation 'androidx.core:core-ktx:1.17.0'
25+
+ implementation 'androidx.media:media:1.7.1'
26+
```
827

928
## 55962 2025_07_17
1029

doc/ChangeLog_User.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ Please also
88
review [Upcoming changes](https://gitlab.com/joshua.tee/wxl23/-/blob/master/doc/UPCOMING_CHANGES.md)
99
impacting all or some users.
1010

11-
## 55962 2025_07_23 (BETA)
12-
13-
* [ADD] library updates, no functional changes
14-
15-
## 55961 2025_07_07 (BETA)
11+
## 55962 2025_08_02
1612

1713
* [FIX] NHC Activity would crash if an NHC Storm is clicked on which is no longer issuing
1814
advisories (such as a PTC)

0 commit comments

Comments
 (0)