Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Mar 30, 2021
1 parent 365afc7 commit 4c4ac8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/infrastructure/device_info_service.dart
Expand Up @@ -22,7 +22,7 @@ class DeviceInfoServiceImpl implements DeviceInfoService {
_deviceInfo = {
'Model': androidInfo.model,
'OsVersion': '${androidInfo.version.sdkInt}',
'AppVersion': '${packageInfo.version}_${packageInfo.buildNumber}'
'AppVersion': '${packageInfo.version}+${packageInfo.buildNumber}'
};
} catch (ex) {
_deviceInfo = {'Model': 'N/A', 'OsVersion': 'N/A', 'AppVersion': 'N/A'};
Expand Down

0 comments on commit 4c4ac8e

Please sign in to comment.