Skip to content

Commit 4920a52

Browse files
committed
Update readme with tools and licence details
1 parent 4269469 commit 4920a52

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,23 @@ After you created a config file, you can open a pull request to make the file av
8686

8787
## Contributing
8888

89+
90+
## Tools
91+
92+
- The [Android SDK Platform Tools](https://developer.android.com/studio/releases/platform-tools) (such as adb and fastboot) are [Apache](https://android.googlesource.com/platform/system/adb/+/refs/heads/master/NOTICE)-licensed universal Android utilities
93+
- [Heimdall](https://gitlab.com/BenjaminDobell/Heimdall/) is an [MIT](https://gitlab.com/BenjaminDobell/Heimdall/-/blob/master/LICENSE)-licensed replacement for the leaked ODIN tool to flash Samsung devices.
94+
95+
8996
## Acknowledgements
9097

9198
* Funded from September 2022 until February 2023 by ![logos of the "Bundesministerium für Bildung und Forschung", Prodotype Fund and OKFN-Deutschland](resources/pf_funding_logos.svg)
99+
100+
101+
## License
102+
Original development by [Tobias Sterbak](https://tobiassterbak.com). Copyright (C) 2022.
103+
104+
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
105+
106+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
107+
108+
You should have received a copy of the GNU General Public License along with this program. If not, see [http://www.gnu.org/licenses/](http://www.gnu.org/licenses/).

openandroidinstaller/openandroidinstaller.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
from widgets import call_button, confirm_button, get_title
5353

5454
# Toggle to True for development purposes
55-
DEVELOPMENT = True
55+
DEVELOPMENT = False
5656
DEVELOPMENT_CONFIG = "Samsung Galaxy A3 2017" # "Pixel 3a"
5757

5858

@@ -505,6 +505,7 @@ def call_to_phone(self, e, command: str):
505505
# TODO: use proper windows paths
506506
command = command.replace("adb", BIN_PATH.joinpath(Path("adb")).name)
507507
command = command.replace("fastboot", BIN_PATH.joinpath(Path("fastboot")).name)
508+
command = command.replace("heimdall", BIN_PATH.joinpath(Path("heimdall")).name)
508509

509510
command = command.replace("<recovery>", self.recovery_path)
510511
command = command.replace("<image>", self.image_path)

0 commit comments

Comments
 (0)