Closed alpha-se closed 5 years ago
@mvanbeusekom Would you mind releasing a new version of location_permissions
to pub (along with a new version of geolocator which incorporates the updated dependency)?
@alpha-se, @yunyu, we released new versions of the plugins yesterday:
The permission level enum is mixed up: iOS: typedef NS_ENUM(int, PermissionLevel) { PermissionLevelLocation = 0, PermissionLevelLocationAlways, # == 1 PermissionLevelLocationWhenInUse, # == 2 };
dart: enum LocationPermissionLevel { location, # == 0 locationWhenInUse, # == 1 locationAlways, # == 2 }