Skip to content

Commit f28e128

Browse files
committed
Initial commit for release 0.5.4
1 parent ff88d98 commit f28e128

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

openandroidinstaller/openandroidinstaller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
)
5151

5252
# VERSION number
53-
VERSION = "0.5.3-beta"
53+
VERSION = "0.5.4-beta"
5454

5555
# detect platform
5656
PLATFORM = sys.platform

scripts/download-tools.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ def download_adb_fastboot(platform: str):
2929
if platform == "win32":
3030
platform = "windows"
3131
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-
)
32+
url = f"https://dl.google.com/android/repository/platform-tools_r35.0.1-{platform}.zip"
3533
# Downloading the file by sending the request to the URL
3634
response = requests.get(url, allow_redirects=True)
3735

0 commit comments

Comments
 (0)