summaryrefslogtreecommitdiff
path: root/src/android (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-03-01Revert arbaic translationGravatar Pengfei Zhu1-144/+1
2024-03-01Remove trailing whitespacesGravatar Pengfei Zhu1-3/+3
2024-03-01Update translations (2024-03-01)Gravatar The yuzu Community21-203/+2988
2024-02-21android: Connect controllers with supported stylesGravatar t8951-30/+46
If you tried to connect a controller that was previously configured with an unsupported style for your game, when you try to connect that controller, it will immediately disconnect. This ensures that the controller that is being connected will be changed to the first supported style index before being connected.
2024-02-21android: Add additional check for hasMappingGravatar t8951-3/+3
Controls can have no mapping if they are either "[empty]" or and empty string. This was causing an issue if you reset mapping on all controllers and then tried to play a game. The check to determine whether auto mapping was required would fail and leave you will no mapped controllers. This feels a bit like user error but it smooths things out if you forget so I see it as necessary.
2024-02-21android: Enable all controller styles on emulation shutdownGravatar t8951-0/+3
2024-02-20android: Fix extra stick setting default valuesGravatar t8951-7/+7
The default value was accidentally hardcoded for all extra stick settings
2024-02-20android: Expose device name settingGravatar t8954-1/+7
2024-02-20android: Add StringInputSetting settings itemGravatar t8955-0/+104
2024-02-19android: Have input overlay follow player 1 style index (#13085)Gravatar Charles Lombardo1-6/+5
2024-02-19android: Fix broken clear button checkGravatar t8955-16/+7
2024-02-19android: Fix overlay visibility reset (#13083)Gravatar Charles Lombardo1-1/+1
2024-02-19android: Show done button when configuring input overlay (#13082)Gravatar Charles Lombardo1-1/+1
2024-02-19Address review commentsGravatar FearlessTobi1-3/+3
2024-02-19scope_exit: Make constexprGravatar FearlessTobi1-2/+6
Allows the use of the macro in constexpr-contexts. Also avoids some potential problems when nesting braces inside it.
2024-02-18android: Map touches to touchscreenGravatar t8953-5/+23
I neglected to map touches to the touchscreen when refactoring in the input mapping PR. This fixes that regression.
2024-02-18android: Show cancel button for the content install noticeGravatar t8951-1/+2
2024-02-18android: Only do first startup automapping if nothing has been mappedGravatar t8951-2/+8
2024-02-17android: Create lifecycle utility to simplify common StateFlow operationsGravatar t89520-630/+331
2024-02-17android: Use extension functions for view visibility and text marqueeGravatar t89531-265/+166
2024-02-17android: Move CoreErrorDialogFragment to its own fileGravatar t8952-42/+53
2024-02-17android: Input mappingGravatar t89575-951/+5064
2024-02-16android: Allow SettingsItems to use String or StringResGravatar t89517-214/+278
2024-02-13android: Prevent user from dismissing mod/cheat noticeGravatar t8951-1/+4
Makes sure that a user can't miss this dialog by touching outside the window. They must press "OK" or "Close" to continue.
2024-02-13android: Show cancel option for delete addons dialogGravatar t8951-1/+2
2024-02-13android: Swap ok and close default strings for MessageDialogFragmentGravatar t8951-3/+3
2024-02-13android: Add screen vertical alignment settingGravatar t8958-1/+90
It's a bit of a hack since I'm moving the view instead of telling the Vulkan surface to bias itself to the top/bottom/center but it works fine for now.
2024-02-13android: Expose FSR sharpness sliderGravatar t8954-1/+15
2024-02-12android: Swap confirmation buttons for delete save data dialogGravatar t8951-1/+3
2024-02-12android: Extend MessageDialogFragment to support a negative action and ↵Gravatar t8952-22/+104
button titles
2024-02-11am: rewrite appletAE, appletOEGravatar Liam1-2/+0
2024-02-09android: Use utility function for applying view marginsGravatar t89515-163/+104
2024-02-09android: Add thermal throttling overlayGravatar t8956-5/+76
2024-02-08android: Remove foreground serviceGravatar t89526-176/+0
2024-02-08android: Fix regex for git versionGravatar t8951-2/+9
2024-02-08android: Run OnEmulationStarted frontend callback in another threadGravatar t8951-1/+3
The JVM has problems with attaching to a Fiber so we start a new thread and wait for the result here.
2024-02-08android: Move JNI setup and helpers to commonGravatar t89512-1070/+156
2024-02-04ci: android: Play store publishing setupGravatar t8951-15/+16
2024-01-29am: retrieve main applet creation info from frontendGravatar Liam4-13/+35
2024-01-29am: re-namespace frontend applets to frontend directoryGravatar Liam3-14/+14
2024-01-29android: Don't show delete button for system driverGravatar t8951-5/+2
2024-01-28android: Disable focus on loading cardGravatar t8951-1/+3
Additionally de-emphasize the ripple that I can't disable
2024-01-27android: Show system driver informationGravatar t8954-2/+46
2024-01-27android: Multi-program app switchingGravatar t8958-34/+117
2024-01-26android: Reload global settings on closing emulationGravatar t8951-0/+1
UI like the driver manager expects the global settings to be loaded when in the MainActivity so we reload global config to properly reset state on exit.
2024-01-26android: Add cancel condition to installed content checkGravatar t8951-1/+7
2024-01-25android: Disable default focus highlight on views that shouldn't be selectedGravatar t89511-5/+19
2024-01-25android: Allow controller to focus on toolbar menu itemsGravatar t89511-6/+28
Workaround for this https://issuetracker.google.com/issues/256948272
2024-01-25android: Add 600dp layout for GameInfoFragmentGravatar t8951-0/+155
2024-01-25android: Fix button click listener for build version nameGravatar t8951-1/+1
Was set to the text instead of the parent view by mistake