дизайна поделал заглушек потыкал

This commit is contained in:
Ваше Имя
2026-03-26 12:06:42 +07:00
parent 0306820746
commit 71e776b099
8 changed files with 927 additions and 316 deletions
+31
View File
@@ -0,0 +1,31 @@
class SpoofData {
static const List<String> deviceNames = [
'Samsung Galaxy S23',
'Xiaomi 13 Pro',
'Google Pixel 7',
'OnePlus 11',
];
static const List<String> osVersions = ['12', '13', '14'];
static const List<String> resolutions = [
'1080x2400',
'1440x3200',
'720x1600',
];
static const List<String> deviceIds = [
'a1b2c3d4e5f6',
'f8e7d6c5b4a3',
'9876543210ab',
'1234567890cd',
];
static const List<String> architectures = ['arm64-v8a', 'armeabi-v7a'];
static const String deviceType = 'android';
static const String timezone = 'Europe/Moscow';
static const String locale = 'ru_RU';
static const String appVersion = '26.10.1';
static const String buildNumber = '6728';
}