File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 5.0.0
2
+
3
+ - ** BREAKING CHANGE:** for Flutter ` 3.27.0 ` and below. Make sure you'll upgrade Flutter to ` 3.29.0 ` or above before using this version.
4
+ * Fixes deprecation warnings
5
+
1
6
## 4.6.2
2
7
3
8
* Updates compileSDKVersion to 35
Original file line number Diff line number Diff line change @@ -119,9 +119,7 @@ class ForegroundNotificationConfig {
119
119
'notificationText' : notificationText,
120
120
'notificationChannelName' : notificationChannelName,
121
121
'setOngoing' : setOngoing,
122
- // Temporary ignored for release 4.6.1 (remove in future versions)
123
- // ignore: deprecated_member_use
124
- 'color' : color? .value,
122
+ 'color' : color? .toARGB32 (),
125
123
};
126
124
}
127
125
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: geolocator_android
2
2
description : Geolocation plugin for Flutter. This plugin provides the Android implementation for the geolocator.
3
3
repository : https://github.com/baseflow/flutter-geolocator/tree/main/geolocator_android
4
4
issue_tracker : https://github.com/baseflow/flutter-geolocator/issues?q=is%3Aissue+is%3Aopen
5
- version : 4.6.2
5
+ version : 5.0.0
6
6
7
7
environment :
8
8
sdk : ^3.5.0
Original file line number Diff line number Diff line change @@ -1511,9 +1511,7 @@ void main() {
1511
1511
);
1512
1512
expect (
1513
1513
jsonMap['foregroundNotificationConfig' ]['color' ],
1514
- // Temporary ignored for release 4.6.1 (remove in future versions)
1515
- // ignore: deprecated_member_use
1516
- settings.foregroundNotificationConfig! .color! .value,
1514
+ settings.foregroundNotificationConfig! .color! .toARGB32,
1517
1515
);
1518
1516
});
1519
1517
You can’t perform that action at this time.
0 commit comments