32 lines
748 B
Dart
32 lines
748 B
Dart
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';
|
|
}
|