Skip to content

Commit ad17424

Browse files
authored
fix: fetchPathProperties for API 28 (#1161)
Signed-off-by: Caijinglong <[email protected]>
1 parent 67f9ba9 commit ad17424

File tree

4 files changed

+78
-1
lines changed

4 files changed

+78
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ that can be found in the LICENSE file. -->
66

77
To know more about breaking changes, see the [Migration Guide][].
88

9+
## Unreleased
10+
11+
### Fixes
12+
13+
- Fix `fetchPathProperties` exception on android of API 28.
14+
915
## 3.2.2
1016

1117
### Fixes

android/src/main/kotlin/com/fluttercandies/photo_manager/core/utils/DBUtils.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ object DBUtils : IDBUtils {
102102
option: FilterOption
103103
): AssetPathEntity? {
104104
val args = ArrayList<String>()
105+
val where = option.makeWhere(type, args)
105106
val idSelection: String
106107
if (pathId == "") {
107108
idSelection = ""
108109
} else {
109110
idSelection = "AND ${MediaStore.MediaColumns.BUCKET_ID} = ?"
110111
args.add(pathId)
111112
}
112-
val where = option.makeWhere(type, args)
113113
val selection =
114114
"${MediaStore.MediaColumns.BUCKET_ID} IS NOT NULL $where $idSelection) GROUP BY (${MediaStore.MediaColumns.BUCKET_ID}"
115115
val cursor = context.contentResolver.logQuery(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
import 'package:flutter/material.dart';
2+
import 'package:oktoast/oktoast.dart';
3+
import 'package:photo_manager/photo_manager.dart';
4+
5+
import 'issue_index_page.dart';
6+
7+
class Issus1152 extends StatefulWidget {
8+
const Issus1152({super.key});
9+
10+
@override
11+
State<Issus1152> createState() => _Issus1152State();
12+
}
13+
14+
class _Issus1152State extends State<Issus1152> with IssueBase<Issus1152> {
15+
@override
16+
List<TargetPlatform>? get supportPlatforms => [
17+
TargetPlatform.android,
18+
];
19+
20+
List<RequestType> checkStatus = [];
21+
22+
@override
23+
void initState() {
24+
super.initState();
25+
PhotoManager.setLog(true);
26+
}
27+
28+
@override
29+
Widget build(BuildContext context) {
30+
return buildScaffold([
31+
buildButton(
32+
'Test API 28 get images',
33+
reproduce,
34+
),
35+
buildLogWidget(),
36+
]);
37+
}
38+
39+
@override
40+
int get issueNumber => 1152;
41+
42+
Future<void> reproduce() async {
43+
final pathList = await PhotoManager.getAssetPathList();
44+
final noAllPathList = pathList.where((element) => !element.isAll);
45+
if (noAllPathList.isEmpty) {
46+
showToast('No path found');
47+
return;
48+
}
49+
50+
final path = noAllPathList.first;
51+
52+
// final name = path.name;
53+
// final count = await path.assetCountAsync;
54+
// addLog('assetCount of "$name": $count');
55+
56+
// final list = await path.getAssetListPaged(page: 0, size: 50);
57+
// addLog('list.length: ${list.length}');
58+
59+
await fetchNewProperties(path);
60+
}
61+
62+
Future<void> fetchNewProperties(AssetPathEntity path) async {
63+
try {
64+
await path.obtainForNewProperties();
65+
} catch (e) {
66+
addLog('error: $e');
67+
}
68+
}
69+
}

example/lib/page/developer/issues_page/issue_index_page.dart

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import 'issue_1025.dart';
1111
import 'issue_1031.dart';
1212
import 'issue_1051.dart';
1313
import 'issue_1053.dart';
14+
import 'issue_1152.dart';
1415
import 'issue_734.dart';
1516
import 'issue_918.dart';
1617
import 'issue_962.dart';
@@ -73,6 +74,7 @@ class IssuePage extends StatelessWidget {
7374
Issue979(),
7475
Issus1051(),
7576
Issus1053(),
77+
Issus1152(),
7678
],
7779
),
7880
),

0 commit comments

Comments
 (0)