summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java/org
AgeCommit message (Collapse)Author
2026-02-15Merge pull request #14385 from dreamsyntax/cpu-clock-maxJMC47
Qt/Android: CPU Clock Override max to 500%
2026-02-12Qt/Android: CPU Clock Override max to 500%dreamsyntax
2026-02-08Android: Rework input device hotplugJosJuice
Previously, when an input device was connected or disconnected, we would recreate all devices. This commit makes it so we only touch the relevant device instead. This matters because recreating a device causes us to drop all held buttons for that device. Due to Android only delivering inputs as events, we're unable to poll for currently held buttons when recreating a device. This recently became a problem for users of Ayn devices due to a firmware update. Every now and then, something about the display viewports changes, triggering an update to an input device that I assume is a touch input device. This input device isn't something users normally map in Dolphin's controller settings, but it changing was causing Dolphin to drop all held buttons for the device's built-in gamepad as well as any other connected gamepads.
2026-02-03Merge pull request #13594 from jordan-woyak/state-cleanupsJordan Woyak
State: Simplify interthread communication and general cleanups.
2026-01-27feat: Add an option to preserve audio pitch when emulation speed changes, ↵Sam Belliveau
integrating it into core configuration and both Qt and Android UIs.
2026-01-19State: Simplify interthread communication and cleanups. Save/Load calls are ↵Jordan Woyak
now always non-blocking for the caller, but appropriately block the CPU thread as needed.
2026-01-19Android: Detect when native code should flush unsaved dataJosJuice
2025-12-22Merge pull request #14155 from Simonx22/android/remove-completable-futureJMC47
Android: Remove CompletableFuture
2025-12-22Merge pull request #14144 from Simonx22/android/log-kotlinJMC47
Android: Convert Log to Kotlin
2025-12-22Merge pull request #14141 from ↵JMC47
Simonx22/android/controllerinterface-handlerthread Android: Use Android's HandlerThread in ControllerInterface instead of our own implementation
2025-11-23Android: Add LeaderboardTrackerEnabled and ChallengeIndicatorsEnabledJosJuice
This is an Android port of 7ed61c50a1. It looks like we don't have descriptions for any of the RetroAchievements settings in the Android GUI, so I haven't added descriptions for these two new settings either.
2025-11-22Android: Format MainPresenterSimonx22
2025-11-22Android: Format ControllerInterfaceSimonx22
2025-11-22Merge pull request #13583 from LillyJadeKatrin/retroachievements-androidJosJuice
Android Support for RetroAchievements
2025-11-21Android: Remove CompletableFutureSimonx22
We only use this class in one in one single function since its introduction with 12aa1071cbb30269cd6526cfbbcd3c4143d584ac in 2021. If we do need it elsewhere we can always bring it back.
2025-11-19Android: Convert Log to KotlinSimonx22
2025-11-19Merge pull request #14111 from Simonx22/android/native-library-kotlinJordan Woyak
Android: Convert NativeLibrary to Kotlin
2025-11-18RetroAchievements - Android login callbackLillyJadeKatrin
Modify the RetroAchievements login code in Android to pass in a callback, pop a message if login fails, close the login box if it succeeds.
2025-11-18Android: Use Android's HandlerThread in ControllerInterface instead of our ↵Simonx22
own implementation
2025-11-17Android: Convert CompressCallback to KotlinSimonx22
2025-11-17Merge pull request #14131 from Simonx22/android/stereo-float-settingsJordan Woyak
Android: Convert stereo settings to floats
2025-11-17Android: Convert BooleanSupplier to KotlinSimonx22
2025-11-17Android: Convert stereo settings to floats to match C++ definitionsSimonx22
These settings were recently changed with 113c86f1b4661c7e300d3867cd26ed26b2640f2a to be floats instead of ints. This commit also changes the Android UI to use the direct convergence value instead of the percentage to match the Qt UI.
2025-11-17Merge pull request #14106 from Simonx22/android/dependency-updates-11102544758JosJuice
Android: Update dependencies
2025-11-17Merge pull request #14097 from Simonx22/android/network-helper-kotlinJosJuice
Android: Convert NetworkHelper to Kotlin
2025-11-16Android Achievements - Hardcore disablesLillyJadeKatrin
Disables state loading and emulation speeds below 100% when RetroAchievements hardcore mode is enabled.
2025-11-16Add login to achievement settingsLillyJadeKatrin
2025-11-16Add Achievements submenu to Android settingsLillyJadeKatrin
2025-11-16Android: Convert NativeLibrary to KotlinSimonx22
2025-11-16Android: Rate limit refreshInputOverlay calls from slidersJosJuice
Sliders can trigger change listeners very rapidly, so let's add some rate limiting so dragging a slider doesn't cause the whole UI to lag. (Now the input overlay looks laggy when dragging a slider, though.)
2025-11-16Android: Treat EmulationActivity dialog dismiss the same as OKJosJuice
In the dialog where you can choose what controller the input overlay should be controlling, there's an OK button. If you change controller but don't press OK, your selection will be saved, but the input overlay won't refresh to show the new controller unless you perform some other action that would cause it to refresh. This is not good UX. This commit changes the behavior not only of this dialog but also other dialogs spawned by EmulationActivity so that everything is properly updated when dismissing a dialog, as if you had pressed OK.
2025-11-16Merge pull request #13992 from JosJuice/android-register-for-activity-resultJosJuice
Android: Replace deprecated startActivityForResult
2025-11-12Android: Remove unused BiMap classSimonx22
2025-11-11Android: Update dependenciesSimonx22
Note: This also updates Kotlin to 2.2.21 which requires small adjustments in our Kotlin code.
2025-11-11Android: Convert NetworkHelper to KotlinSimonx22
2025-11-11Android: Replace deprecated startActivityForResultJosJuice
2025-11-09Android: Convert DolphinApplication to KotlinSimonx22
2025-11-09Android: Prevent dismissing the System Update dialog by tapping outsideSimonx22
Tapping outside the System Update dialog would previously close it and leave the update in a partially canceled, inconsistent state. This change disables outside-touch dismissal to avoid accidental interruptions and ensure the process completes cleanly.
2025-11-08Android: Clear listener in SwitchSettingViewHolderJosJuice
If bind was called more than once for a SwitchSettingViewHolder, the line `binding.settingSwitch.isChecked = setting.isChecked` would accidentally trigger the listener registered during the previous bind call.
2025-11-08Merge pull request #14047 from Simonx22/reset-all-dolphin-settings-androidOatmealDome
Android: Add Reset Dolphin Settings functionality
2025-11-08Merge pull request #14077 from Simonx22/android-alert-message-kotlinOatmealDome
Android: Convert AlertMessage dialog to Kotlin
2025-11-08Android: Convert AlertMessage dialog to KotlinSimonx22
2025-11-08Android: Use the shared HTTP analytics backendSimonx22
We can now route Android analytics through Common::HttpAnalyticsBackend, drop the Volley sender, and keep the JNI layer limited to only transfer metadata since https://bugs.dolphin-emu.org/issues/11772 has been fixed.
2025-11-07Android: Replace Action1 helper with Kotlin lambdaSimonx22
2025-11-02Android: Add Reset Dolphin Settings functionalitySimonx22
2025-11-01Merge pull request #13655 from JosJuice/android-always-expand-sheetsJosJuice
Android: Expand bottom sheets on devices with touch too
2025-10-30Android: Expand bottom sheets on devices with touch tooJosJuice
In a few places in Dolphin, we're using BottomSheetDialogFragments. These unhelpfully tend to start out in a "collapsed" state when in landscape mode (presumably depending on factors like screen size). The user then has to manually expand them before they can meaningfully interact with them. We've been automatically setting BottomSheetDialogFragments to the expanded state if the device Dolphin is running on doesn't support touch, since with d-pad navigation it's impossible to expand these sheets. But I think we should set them to expanded on devices that support touch too. I haven't encountered a single case where you can do anything useful with any of Dolphin's BottomSheetDialogFragments while they're collapsed, so the user always has to expand sheets manually if they start out collapsed. And just because a device supports touch doesn't necessarily mean you're interacting with it through the touch screen right now - you could be using a gamepad, for instance.
2025-10-29Android: Save settings instantly after editsSimonx22
2025-09-28Merge pull request #13260 from JosJuice/android-gcadapter-hotplug-callbackJMC47
Android: Detect GCAdapter hotplug using BroadcastReceiver
2025-08-26Android: Set Dolphin documents' root supports testing parent child ↵Marocco2
relationships. Adds `DocumentsContract.Root.FLAG_SUPPORTS_IS_CHILD` to the list of the flags in order to show up for third-party apps for easier file syncing with local/cloud file server providers