-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDEVICES.py
More file actions
117 lines (113 loc) · 3.43 KB
/
DEVICES.py
File metadata and controls
117 lines (113 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Code from @bruvv in the 'igbot' GitHub repo updated with current Instagram app version.
# If you want to add more android devices feel free to do it, the more there a device,
# the better the program can last in time.
ANDROID_APP_VERSION = '302.0.0.34.111'
VERSION_CODE = '208061712'
DEVICES = {
# Released on 2023
'galaxy_z_flip': {
'app_version': ANDROID_APP_VERSION,
'android_version': '33',
'android_release': '13.0',
'dpi': '420dpi',
'resolution': '2640x1080',
'manufacturer': 'samsung',
'device': ' SM-F700x',
'model': 'ZFlip5',
'cpu': 'qcom',
'version_code': VERSION_CODE,
},
# Released on March 2016
'samsung_galaxy_s7': {
'app_version': ANDROID_APP_VERSION,
'android_version': '26',
'android_release': '8.0',
'dpi': '640dpi',
'resolution': '1440x2560',
'manufacturer': 'samsung',
'device': 'SM-G930F',
'model': 'herolte',
'cpu': 'samsungexynos8890',
'version_code': VERSION_CODE,
},
# Released on January 2017
'huawei_mate_9_pro': {
'app_version': ANDROID_APP_VERSION,
'android_version': '24',
'android_release': '7.0',
'dpi': '640dpi',
'resolution': '1440x2560',
'manufacturer': 'HUAWEI',
'device': 'LON-L29',
'model': 'HWLON',
'cpu': 'hi3660',
'version_code': VERSION_CODE,
},
# Released on February 2018
'samsung_galaxy_s9_plus': {
'app_version': ANDROID_APP_VERSION,
'android_version': '28',
'android_release': '9.0',
'dpi': '640dpi',
'resolution': '1440x2560',
'manufacturer': 'samsung',
'device': 'SM-G965F',
'model': 'star2qltecs',
'cpu': 'samsungexynos9810',
'version_code': VERSION_CODE,
},
# Released on November 2016
'one_plus_3t': {
'app_version': ANDROID_APP_VERSION,
'android_version': '26',
'android_release': '8.0',
'dpi': '380dpi',
'resolution': '1080x1920',
'manufacturer': 'OnePlus',
'device': 'ONEPLUS A3010',
'model': 'OnePlus3T',
'cpu': 'qcom',
'version_code': VERSION_CODE,
},
# Released on April 2016
'lg_g5': {
'app_version': ANDROID_APP_VERSION,
'android_version': '23',
'android_release': '6.0.1',
'dpi': '640dpi',
'resolution': '1440x2392',
'manufacturer': 'LGE/lge',
'device': 'RS988',
'model': 'h1',
'cpu': 'h1',
'version_code': VERSION_CODE,
},
# Released on June 2016
'zte_axon_7': {
'app_version': ANDROID_APP_VERSION,
'android_version': '23',
'android_release': '6.0.1',
'dpi': '640dpi',
'resolution': '1440x2560',
'manufacturer': 'ZTE',
'device': 'ZTE A2017U',
'model': 'ailsa_ii',
'cpu': 'qcom',
'version_code': VERSION_CODE,
},
# Released on March 2016
'samsung_galaxy_s7_edge': {
'app_version': ANDROID_APP_VERSION,
'android_version': '23',
'android_release': '6.0.1',
'dpi': '640dpi',
'resolution': '1440x2560',
'manufacturer': 'samsung',
'device': 'SM-G935',
'model': 'hero2lte',
'cpu': 'samsungexynos8890',
'version_code': VERSION_CODE,
},
}
if __name__ == '__main__':
print('This code is intended to be imported...')