summaryrefslogtreecommitdiff
path: root/Source/Android
AgeCommit message (Collapse)Author
2026-08-29Merge pull request #14750 from tom-pratt/netplay-controller-mappingJosJuice
Android: Netplay controller mapping
2026-08-29Merge pull request #14829 from TorresOwO/fix-skylanders-crash-13956JosJuice
Android: Fix Crash when loading Skylanders file
2026-08-28Fix netplay crash on pre API 31 devicesTom Pratt
TypedArray doesn't implement AutoCloseable on older devices so .use{} caused a crash. It turned out the special handling for background colours was unnecessary anyway.
2026-08-27Merge pull request #14718 from JosJuice/android-vibration-lengthJMC47
Android: Make vibration length variable
2026-08-26Android: Use OpenDocument for NFC figures and fix crash (Fixes #13956)Sergio Torres
- Switch from ActivityResultContracts.GetContent() to OpenDocument() which restores ACTION_OPEN_DOCUMENT behavior, granting write access to file descriptors opened in C++ via ContentHandler.openFd(). - Replace unsafe force-unwraps (!!) in EmulationActivity with null checks.
2026-08-24Android controller mapping UITom Pratt
UI for assigning netplay players to gamecube ports and wii remotes.
2026-08-24Netplay PlayerTable fixesTom Pratt
- Improve the column measurement logic so it updates the column width when text changes. - Use matchParentSize on the clickable target in OutlinedBox so that it is clickable when the OutlinedBox contains contents with dynamic height.
2026-08-24Add functionality to get and set controller mappings in AndroidTom Pratt
2026-08-23Merge pull request #14742 from Simonx22/android/settings-search-nextJosJuice
Android: Add global settings search
2026-08-16Merge pull request #14735 from tom-pratt/dual-core-warningJosJuice
Android: Dual core warning when hosting netplay
2026-07-28Replace string concatination with `fmt::format`Dr. Dystopia
2026-07-25Android: Reformat settings search filesSimonx22
2026-07-25Android: Add global settings searchSimonx22
2026-07-24CMake: Bump minimum requirement to 3.25Joshua Vandaële
2026-07-19Android: Dual core warning when hosting netplayTom Pratt
Using dual core during netplay seems sufficiently detrimental that its worth showing this warning message and the option to turn dual core off when starting netplay.
2026-07-13Scaffold / Appbar composableTom Pratt
Custom composable that switched between compact and medium size app bar depending on a combination of orientation and screen size. (Small app bar when horizontal on small devices, medium app bar otherwise. Medium app bar supports collapse on scroll.
2026-07-13Merge pull request #14728 from Simonx22/android/api37-ndk30-dependency-updatesOatmealDome
Android: Update dependencies and build tools
2026-07-13Merge pull request #14630 from Simonx22/android/convert-contenthandler-to-kotlinOatmealDome
Android: Convert ContentHandler to Kotlin and fix warnings
2026-07-12Android: Update dependencies and build toolsSimonx22
Update Android dependencies and build tools to their latest available versions. Rename the GameCube save magic constant to avoid a collision with the NDK 30 ARM64 signal context header.
2026-07-11Android: Update description for Enable Emulated Memory Size Override.cristian64
2026-07-11Android: Convert ContentHandler to Kotlin and fix warningsSimonx22
2026-07-09Merge pull request #14716 from tom-pratt/chat-message-coloursDentomologist
Android: Coloured netplay chat messages
2026-07-09Android: Make vibration length variableJosJuice
Previously we would vibrate for 100 ms on every vibration, which was especially annoying if a game was doing a bunch of vibrations that were supposed to be much shorter than that. Now we tell Android to vibrate for 10 s, then cancel the vibration as soon as the game turns the vibration off.
2026-07-08Merge pull request #14702 from JosJuice/android-vibration-usageDentomologist
Android: Set USAGE_MEDIA for rumble
2026-07-08Android: Silence deprecation warnings in ControllerInterfaceJosJuice
We have to use the deprecated APIs when running on old devices.
2026-07-07Android: Coloured netplay chat messagesTom Pratt
2026-07-05Merge pull request #14689 from JosJuice/android-internal-resolution-displayDentomologist
VideoCommon: Use XFB for internal resolution stats
2026-07-05Merge pull request #14619 from JosJuice/no-si-change-deviceJosJuice
Core: Remove SerialInterfaceManager::ChangeDevice
2026-07-05Merge pull request #14623 from Simonx22/android/convert-eglhelper-to-kotlinJosJuice
Android: Convert EGLHelper to Kotlin
2026-07-05Merge pull request #14624 from ↵JosJuice
Simonx22/android/convert-filebrowserhelper-to-kotlin Android: Convert FileBrowserHelper to Kotlin
2026-07-05Android: Set USAGE_MEDIA for rumbleJosJuice
This lets rumble work even if the user has turned off the Android setting Sound and vibration > Vibration and haptics > Interactive haptics > Touch feedback. Rumble can still be disabled through Dolphin's controller bindings and through in-game settings (GameCube) or SYSCONF (Wii).
2026-07-05Rename "Show Internal Resolution" to "Show XFB Resolution"JosJuice
To make it extra clear that this is measuring the XFB, not the EFB.
2026-07-05Android: Add missing graphics debug settingsJosJuice
These are available in DolphinQt, so let's make them available in the Android GUI too.
2026-06-29Android: Fix release buildJosJuice
We don't need to see Compose previews when making a release build, but androidx.compose.ui.tooling.preview.Preview is referenced in the source code nonetheless, so the build system needs to know what it is.
2026-06-28Merge pull request #14647 from tom-pratt/netplayJMC47
Android netplay
2026-06-28Core: Remove SerialInterfaceManager::ChangeDeviceJosJuice
Now SerialInterfaceManager::UpdateDevices reads the configured SI devices directly from Config instead. The main reason why I wanted to do this is so that Android can change SI devices while emulation is running. (Android didn't have the code for calling ChangeDevice.) But when implementing the change, I noticed that NetPlay and Movie were using ChangeDevice as a way of overriding the SI devices configured by the user. Replacing this ended up making the change larger than I first anticipated. For Wii Remotes, there was no equivalent to ChangeDevice, so NetPlay and Movie were using Config::SetCurrent to override the Wii Remote source configured by the user. If we can use the config system to override Wii Remote sources, why not do the same for SI devices? This commit makes NetPlay and Movie set SI devices and Wii Remote sources in the NetPlay and Movie config layers, as that is the conceptually appropriate place to do it. As far as I can tell, the old Movie code for overriding SI devices and Wii Remote sources didn't actually work. This new code does. I didn't investigate exactly why it didn't work, but maybe it's because loading a movie happens before emulation actually starts.
2026-05-25Merge pull request #14631 from ↵Dentomologist
Simonx22/android/convert-directoryinitialization-to-kotlin Android: Convert DirectoryInitialization to Kotlin
2026-05-23Merge pull request #14506 from adamscott/crop-that-screenAdmiral H. Curtiss
Add screen crop feature
2026-05-19lint formattingTom Pratt
2026-05-19Fix NetplayScreen edge to edgeTom Pratt
NetplayScreen was not drawing under the bottom nav bar like other screens. In landscape mode half of the screen scrolls and half is fixed, to make this look natural with edge to edge, provide a fade on the bottom of the scrolling side so things look natural when the screens loads and is resting at 0 scroll offset.
2026-05-19Replace hardcoded save progress stringTom Pratt
2026-05-19Use the dual pane netplay screen layout only if the width is sufficientTom Pratt
To avoid using dual pane layout on very small devices, ensure that the current width available for display is at least medium (600dp). It also has to be landscape, the dual pane mode looks weird on a tablet in portrait mode since there's not that much content.
2026-05-19WithSession helper functionTom Pratt
Handles the repeated boiler plate of using a weak reference to NetplaySession from NetplayUICallbacks
2026-05-19Pass immutable games list to NetplayUICallbacksTom Pratt
Remove corresponding jni config. Rename Netplay to NetplaySession in jni config to match new kotlin name.
2026-05-19Use unique_ptr when creating netplay client / serverTom Pratt
2026-05-19Add @Keep annotation to Player constructorTom Pratt
Since it's only instantiated from c++.
2026-05-19Fix netplay license headersTom Pratt
2026-05-19Update compose dependenciesTom Pratt
Was using 2025 instead of 2026! Fixed some buggy bottom sheet behaviour. Minor tidying of the chat UI in the bottom sheet
2026-05-19Implement DoAllPlayersHaveGame() checkTom Pratt
2026-05-19Add network mode picker for hostTom Pratt