We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff88d98 commit f28e128Copy full SHA for f28e128
2 files changed
openandroidinstaller/openandroidinstaller.py
@@ -50,7 +50,7 @@
50
)
51
52
# VERSION number
53
-VERSION = "0.5.3-beta"
+VERSION = "0.5.4-beta"
54
55
# detect platform
56
PLATFORM = sys.platform
scripts/download-tools.py
@@ -29,9 +29,7 @@ def download_adb_fastboot(platform: str):
29
if platform == "win32":
30
platform = "windows"
31
logger.info(f"Download adb and fastboot for {platform}...")
32
- url = (
33
- f"https://dl.google.com/android/repository/platform-tools-latest-{platform}.zip"
34
- )
+ url = f"https://dl.google.com/android/repository/platform-tools_r35.0.1-{platform}.zip"
35
# Downloading the file by sending the request to the URL
36
response = requests.get(url, allow_redirects=True)
37
0 commit comments