summaryrefslogtreecommitdiff
path: root/src/android
AgeCommit message (Collapse)Author
2023-11-09android: Hide loading animation on first framet895
2023-11-06Merge pull request #11972 from t895/fps-counter-adjustmentsliamwhite
android: FPS counter adjustments
2023-11-05android: Simplify FPS counter paddingCharles Lombardo
2023-11-05android: Color the FPS counter whiteCharles Lombardo
2023-11-04android: Always update FPS counterCharles Lombardo
2023-11-03android: Don't reload log/system after loading firmware/backupCharles Lombardo
2023-11-03android: Log more system information during startupCharles Lombardo
Logs device manufacturer/model, SoC manufacturer/model where available, and the total system memory
2023-11-03android: Fix fetching system memory size from MemoryUtilCharles Lombardo
We weren't rounding up the value at a unit before (GB, MB, etc) we were rounding up the total bytes and that would do nothing. This fixes that, and the check for total system memory during first emulation start where we tried to check the required system memory against 1 gigabyte.
2023-11-03android: Update surface parameters on emulation startCharles Lombardo
This adds a quick update that notifies the render surface if there was a change between surface creation and emulation starting.
2023-11-01Merge pull request #11942 from t895/log-versionliamwhite
android: Adjust log lifecycle
2023-11-01android: Adjust log lifecycleCharles Lombardo
Now logging will start when the frontend starts like qt does. This also adjusts the share log button to follow where we share the current log if we just returned from a game or return the old log if we haven't started a game yet.
2023-11-01android: Use yuzu logging systemCharles Lombardo
Now anything that's logged in the frontend will be printed into the log file
2023-11-01android: Default to player number 0 if we get an input from an unrecognized ↵Charles Lombardo
controller
2023-11-01android: Adjust driver manager source stringCharles Lombardo
2023-11-01android: Reorganize settings tabCharles Lombardo
2023-10-31android: Auto-generate locale configCharles Lombardo
2023-10-31android: Update translations from transifexCharles Lombardo
2023-10-31Merge pull request #11931 from t895/applet-launcherliamwhite
android: Applet launcher UI
2023-10-31android: Initialize filesystem components during application startCharles Lombardo
2023-10-31android: Implement applet launcherCharles Lombardo
2023-10-31Merge pull request #11925 from t895/controller-fixliamwhite
android: Fix controllers stuck on player 2
2023-10-30android: Reorder controller indexes and only use controllersCharles Lombardo
Before we could ignore controller inputs by forwarding them to player two if a non-controller was connected before and recognized as an input device.
2023-10-30Merge pull request #11922 from t895/simplify-card-layoutliamwhite
android: Simplify game card layout
2023-10-30android: Simplify game card layoutCharles Lombardo
Using a material card view to shape the image was just a waste of a layout pass. A shapeable image view does what we want and does it faster.
2023-10-30android: FileUtil: Add option to suppress log for native exists() callsCharles Lombardo
We often check for the existence of files that only exist in ExeFS so this can spam logcat with useless messages when scanning for games.
2023-10-30android: Fix resolving android URIs in native codeCharles Lombardo
2023-10-30android: Refactor game metadata collection to new fileCharles Lombardo
This also removes irrelevant data and adds new information from/to the Game data class and RomMetadata struct
2023-10-30android: Use header for EmulationSessionCharles Lombardo
2023-10-30Merge pull request #11916 from t895/focus-fixliamwhite
android: Release touch on input overlay when opening in-game menu
2023-10-30Merge pull request #11915 from t895/startup-freezeliamwhite
android: Move game deserialization to another thread
2023-10-30android: InputHandler: Convert to objectCharles Lombardo
This doesn't need to be an instance of a class because it doesn't hold any data. It's just all helper functions.
2023-10-30android: Removed unused ControllerMappingHelperCharles Lombardo
2023-10-29android: Release touch on input overlay when opening in-game menuCharles Lombardo
2023-10-29android: Move game deserialization to another threadCharles Lombardo
Deserializing games from the cache in shared preferences was done on the main thread and could cause a stutter on startup.
2023-10-29android: Break home settings into grid with large screensCharles Lombardo
2023-10-13Merge pull request #11767 from t895/gradle-stuffCharles Lombardo
android: Update dependencies
2023-10-13android: Fix incorrect assumption for driver installation validationCharles Lombardo
The driver was assumed to be installed at this point before I made a refactor. Now we just check if the copy operation was successful and delete the file if it fails.
2023-10-13android: Remove unnecessary flag to extract native libs in AndroidManifest.xmlCharles Lombardo
2023-10-13android: Update dependenciesCharles Lombardo
Updates to androidx navigation, lifecycle, preference, fragment, recyclerview, and core
2023-10-13android: Update ndk to 26.1.10909125Charles Lombardo
The new ndk uses LLVM 17.0.2 so we can remove the LLVM download and libc++ options for the android builds
2023-10-13Merge pull request #11649 from t895/driver-managerliamwhite
android: Driver manager
2023-10-12android: Update AGP to 8.1.2Charles Lombardo
2023-10-12android: Add GPU driver management fragmentCharles Lombardo
Implements a GPU driver manager that saves all drivers to the user data directory and asynchronously installs drivers when they're needed.
2023-10-02vk_present_manager: recreate surface on any surface lossLiam
2023-10-01android: Use application context for all FileUtil functionsCharles Lombardo
2023-09-28Merge pull request #11604 from t895/only-install-nspliamwhite
Frontend: Remove ability to install xci files
2023-09-27Merge pull request #11613 from t895/fragment-exception-changeCharles Lombardo
android: Various play store fixes
2023-09-27android: Prevent crash when trying to change pages in setup fragmentCharles Lombardo
Sometimes when we want to change the current setup page, the current view isn't available and we try to alter the current view. This adds a guard to prevent that issue.
2023-09-27android: Prevent setup fragment crash in backgroundCharles Lombardo
Sometimes during onSaveInstanceState, the SetupFragment would crash the app in the background if we tried to store the state of a view.
2023-09-27android: Don't update views if binding is null in onConfigurationChangedCharles Lombardo