update versions
parent
682d487586
commit
3d66578e74
|
@ -130,3 +130,4 @@ dmypy.json
|
|||
|
||||
.old/*
|
||||
responses/*
|
||||
misc/paramfuzzer/results/*
|
|
@ -0,0 +1,78 @@
|
|||
7.4.620913-release
|
||||
57.38.2
|
||||
100.0.4896.79
|
||||
3.0.1
|
||||
7.7
|
||||
2.12.422490447
|
||||
1.9
|
||||
100.0.4896.79
|
||||
6.3
|
||||
1.11.0.358
|
||||
1.8
|
||||
1.0.421968649
|
||||
2.4.042
|
||||
1.8.2.392356939
|
||||
11.6.06.433184565-release-armeabi-v7a
|
||||
2022.03.20.437098296.Release
|
||||
8.5.6.197464524.go
|
||||
2.41.438904386
|
||||
3.3
|
||||
27.0.326
|
||||
4.4.439927113
|
||||
13.13.7.23.arm
|
||||
0.1.315561676
|
||||
2.9.0.365531209.assistantlite.210329
|
||||
5.00
|
||||
2022.14.0-439152615-release
|
||||
8.4.500.429168112.25
|
||||
3.65.2.438022649
|
||||
1.22.062.06.90
|
||||
2.21.261.04.90
|
||||
122.0.353872967.DR122
|
||||
9.155.0.2
|
||||
3.0.208511728
|
||||
2.48.75.6
|
||||
3.2.5.164561151-armeabi-v7a
|
||||
5.22.041.03.30
|
||||
1.14.220323006
|
||||
11.23.3
|
||||
157.0
|
||||
2022.03.20.437881873.Release
|
||||
5.49.0.430730993
|
||||
1.4.large
|
||||
1.141.435035767
|
||||
2020062202
|
||||
2.143.434517044
|
||||
52.0.323183643
|
||||
5.75.0.426435368
|
||||
5.22.1
|
||||
2022.01.32371
|
||||
8.26.8771-1.T
|
||||
22.09.20
|
||||
30.0.20-19
|
||||
1.0.196287551
|
||||
1.22.062.06.90
|
||||
1.22.062.06.90
|
||||
2.0.0.432514663
|
||||
26.2.3.381920558
|
||||
6.32.0.436351116.8-release
|
||||
2022.02.07.428774713
|
||||
11.10.0.305602887
|
||||
40.0.402967813
|
||||
1.78.217178463.release
|
||||
7.7.051
|
||||
10.55.0
|
||||
1.5.2.242191532
|
||||
12
|
||||
1.1.413207646
|
||||
6.5.1.12
|
||||
2.19.1.303051424
|
||||
2.48.0.377032688.gms
|
||||
17.11.35
|
||||
22.09.101
|
||||
2.10.7.6
|
||||
3.25.54
|
||||
7.12.1
|
||||
4.71.51
|
||||
6.12.1
|
||||
4.0.5
|
|
@ -0,0 +1,26 @@
|
|||
import requests
|
||||
|
||||
output = open("android_versions.txt", "w")
|
||||
|
||||
response = requests.get("https://androidapksfree.com/devapk/google-inc/")
|
||||
|
||||
#print(response.text)
|
||||
|
||||
split_html = response.text.split('<a href="')
|
||||
for x in split_html:
|
||||
apk_link = x.split('"')[0]
|
||||
|
||||
if not apk_link.startswith("https://"):
|
||||
continue
|
||||
|
||||
try:
|
||||
response_apk = requests.get(apk_link)
|
||||
apk_version = response_apk.text.split("latest apk version ")[1].split('"')[0].split(" ")[0].split("_")[0]
|
||||
print(apk_version)
|
||||
|
||||
output.write(apk_version.strip() + "\n")
|
||||
output.flush()
|
||||
except Exception as ex:
|
||||
print(ex)
|
||||
|
||||
output.close()
|
File diff suppressed because one or more lines are too long
|
@ -33,7 +33,7 @@
|
|||
60;WEB_HEROES;0.1
|
||||
61;WEB_MUSIC;1.0
|
||||
62;WEB_CREATOR;1.20220403
|
||||
63;TV_UNPLUGGED_ANDROID;1.16.80
|
||||
63;TV_UNPLUGGED_ANDROID;1.22.062.06.90
|
||||
64;IOS_LIVE_CREATION_EXTENSION;17.13.3
|
||||
65;TVHTML5_UNPLUGGED;6.13
|
||||
66;IOS_MESSAGES_EXTENSION;17.13.3
|
||||
|
|
|
@ -20,5 +20,6 @@
|
|||
2.0
|
||||
0.1
|
||||
3.20220325
|
||||
1.22.062.06.90
|
||||
1.16.80
|
||||
1.0.0
|
||||
|
|
Loading…
Reference in New Issue