Skip to content

Commit 847b507

Browse files
committed
55952-elys
1 parent 4fa0feb commit 847b507

4 files changed

Lines changed: 36 additions & 24 deletions

File tree

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ dependencies {
131131
implementation 'com.google.android.material:material:1.12.0'
132132
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7'
133133
implementation 'androidx.cardview:cardview:1.0.0'
134-
implementation 'androidx.core:core-ktx:1.15.0'
134+
implementation 'androidx.core:core-ktx:1.16.0'
135135
implementation 'androidx.media:media:1.7.0'
136136
implementation 'androidx.preference:preference-ktx:1.2.1'
137137
implementation 'androidx.recyclerview:recyclerview:1.4.0'

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="55951"
26-
android:versionName="55951-elys">
25+
android:versionCode="55952"
26+
android:versionName="55952-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/util/FileProvider.kt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@ import java.io.File
1515

1616
class FileProvider : androidx.core.content.FileProvider() {
1717

18-
override fun query(
19-
uri: Uri,
20-
projection: Array<String>?,
21-
selection: String?,
22-
selectionArgs: Array<String>?,
23-
sortOrder: String?
24-
): Cursor {
25-
val source = super.query(uri, projection, selection, selectionArgs, sortOrder)
26-
val columnNames = source.columnNames
27-
val newColumnNames = columnNamesWithData(columnNames)
28-
val cursor = MatrixCursor(newColumnNames, source.count)
29-
source.moveToPosition(-1)
30-
while (source.moveToNext()) {
31-
val row = cursor.newRow()
32-
columnNames.indices.forEach {
33-
row.add(source.getString(it))
34-
}
35-
}
36-
return cursor
37-
}
18+
// override fun query(
19+
// uri: Uri,
20+
// projection: Array<String>?,
21+
// selection: String?,
22+
// selectionArgs: Array<String>?,
23+
// sortOrder: String?
24+
// ): Cursor {
25+
// val source = super.query(uri, projection, selection, selectionArgs, sortOrder)
26+
// val columnNames = source.columnNames
27+
// val newColumnNames = columnNamesWithData(columnNames)
28+
// val cursor = MatrixCursor(newColumnNames, source.count)
29+
// source.moveToPosition(-1)
30+
// while (source.moveToNext()) {
31+
// val row = cursor.newRow()
32+
// columnNames.indices.forEach {
33+
// row.add(source.getString(it))
34+
// }
35+
// }
36+
// return cursor
37+
// }
3838

3939
private fun columnNamesWithData(columnNames: Array<String>): Array<String> {
4040
columnNames

doc/ChangeLog.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22

33
# Developer ChangeLog
44

5-
## 55951 2025_04_08
5+
## 55952 2025_04_14
6+
7+
*
8+
9+
## 55951 2025_04_14
610

711
* [ADD] use UtilityDownloadNws.getLocationPointData in Location.getWfoRadarSiteFromPoint
812
* [FIX] replace GOES 16 URLS with GOES 19, redirects were in place but better to avoid
13+
* [REF] comment out FileProvider.query as it appears to not be in use and requires changes based on
14+
update below
15+
* [ADD] lib update
16+
17+
```
18+
- implementation 'androidx.core:core-ktx:1.15.0'
19+
+ implementation 'androidx.core:core-ktx:1.16.0'
20+
```
921

1022
## 55950 2025_03_27
1123

0 commit comments

Comments
 (0)