Skip to content

Commit 778aa4c

Browse files
committed
fix-constants
1 parent bd6095e commit 778aa4c

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

lib/src/constants.dart

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
class Constants {
22
static const packageName = 'amplitude-flutter';
3-
static const packageVersion = '1.3.1';
3+
static const packageVersion = '1.3.2';
44

55
// Local storage
66
static const kLocalStoreDeviceIdKey = 'amp:device_id';
77

8-
static const kInvalidAndroidDeviceIds = {'', '9774d56d682e549c', 'unknown',
9-
'000000000000000', 'Android', 'DEFACE', '00000000-0000-0000-0000-000000000000'};
8+
static const kInvalidAndroidDeviceIds = {
9+
'',
10+
'9774d56d682e549c',
11+
'unknown',
12+
'000000000000000',
13+
'Android',
14+
'DEFACE',
15+
'00000000-0000-0000-0000-000000000000'
16+
};
1017

11-
static const kInvalidIosDeviceIds = {'', '00000000-0000-0000-0000-000000000000'};
18+
static const kInvalidIosDeviceIds = {
19+
'',
20+
'00000000-0000-0000-0000-000000000000'
21+
};
1222

1323
static const kPayloadAndroidAaid = 'androidADID';
1424
static const kPayloadIosIdfa = 'ios_idfa';

0 commit comments

Comments
 (0)