Skip to content

Commit e59d65a

Browse files
authored
jvmTarget update (#1292)
Fixes #1291
1 parent aa91b91 commit e59d65a

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ To know more about breaking changes, see the [Migration Guide][].
88

99
## Unreleased
1010

11+
*None.*
12+
13+
## 3.7.1
14+
15+
### Fixes
16+
17+
- Fix inconsistent `jvmTarget` compatibility on Android.
18+
1119
## 3.7.0
1220

1321
### Features
1422

15-
- Add `includeHiddenAssets` option to `PMFilter` and `FilterOptionGroup` to include hidden assets in the results on iOS. (#TBD)
23+
- Add `includeHiddenAssets` option to `PMFilter` and `FilterOptionGroup` to include hidden assets in the results on iOS.
1624

1725
### Fixes
1826

android/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ android {
4545
targetCompatibility JavaVersion.VERSION_17
4646
}
4747

48+
kotlinOptions {
49+
jvmTarget = '17'
50+
}
51+
4852
sourceSets {
4953
main.java.srcDirs += 'src/main/kotlin'
5054
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: photo_manager
22
description: A Flutter plugin that provides album assets abstraction management APIs on Android, iOS, macOS, and OpenHarmony.
33
repository: https://github.com/fluttercandies/flutter_photo_manager
4-
version: 3.7.0
4+
version: 3.7.1
55

66
environment:
77
sdk: ">=2.13.0 <4.0.0"

0 commit comments

Comments
 (0)