Notice
Manual firmware downloads and downloading from the firmware history feature have been disabled for now. Samsung changed something on the backend and always serves the latest available firmware, no matter which is requested.
If you know a workaround, please follow up on this issue.
Bifrost - Samsung Firmware Downloader
This is yet another firmware downloader for Samsung devices, but it has some special features.
For one, it's cross-platform. Bifrost runs on Windows, Linux, macOS, and even Android!
Bifrost is also a graphical program, with a shared UI across all supported platforms.
Most of the functionality in Bifrost is based on Samloader. The Python code has been converted to Kotlin and tweaked to take advantage of some of Kotlin's features.
Bifrost uses Jetpack Compose, JetBrains Compose for Desktop, and Kotlin Multiplatform to create a shared codebase for all supported platforms.
Download
Binaries are available for 64-bit versions Windows, Linux, macOS, and Android. JetBrains Compose can't currently build for 32-bit operating systems.
Check out the Releases page for the downloads.
Building
Building this project should be fairly easy.
Prep:
- Make sure you have the latest Android Studio Canary installed.
- Clone this project into Android Studio and let it import.
Desktop:
Run the package
Gradle task.
Command Line:
- Open the Terminal view in Android Studio (bottom-left).
- Enter
gradlew createDistributable
on Windows,./gradlew createDistributable
on Linux, or./gradlew packageDmg
on macOS. - Once it finishes building, check the output log to see where the executable was saved.
GUI:
- Open the Gradle view in Android Studio (top-right).
- Expand the project, then expand "desktop".
- Expand "Tasks," then "build," and double-click "createDistributable" on Windows and Linux, or "packageDmg" on macOS.
- Once it finishes building, check the output log to see where the executable was saved.
Android:
Command Line:
- Open the Terminal view in Android Studio (bottom-left).
- Enter
gradlew :android:build
on Windows or./gradlew :android:build
on macOS and Linux. - Once it finishes building, go to
android/build/outputs/apk/debug
and installandroid-debug.apk
.
GUI:
- Open the Gradle view in Android Studio (top-right).
- Expand the project, then expand "android".
- Expand "Tasks," then "build," and double-click "build".
- Once it finishes building, go to
android/build/outputs/apk/debug
and installandroid-debug.apk
.
Running
Windows
- Extract the release ZIP for Windows and go through the folders until you find "Bifrost.exe".
- Launch the EXE. If it fails, launch as Administrator.
Linux
- Extract the release ZIP for Linux and go through the folders until you find "Bifrost".
- Open a terminal in this location.
- Enter
chmod +x Bifrost
. - Enter
./Bifrost
.
macOS
- Extract the release ZIP and open the DMG.
- Move "Bifrost.app" to the Applications folder.
- Launch the app.
There may be a security error when launching the app. If there is, follow the steps outlined here.
Alternatively, if the above doesn't work, you can try running the following in a Terminal (requires root permissions):
sudo xattr -cr /Applications/Bifrost.app
.
Once that command is executed, the app should run.
It's also possible that the DMG itself will refuse to open. If that happens, the same xattr
command, but run on the DMG, should work:
sudo xattr -cr ~/Downloads/Bifrost-<VERSION>.dmg
.
Android
- Download the release APK to your phone.
- Install and run it.