summaryrefslogtreecommitdiff
path: root/src/android/app (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* android: Add theme mode pickerGravatar Charles Lombardo2023-06-035-11/+76
|
* android: Add theme pickerGravatar Charles Lombardo2023-06-037-3/+127
|
* android: Prevent potential abstract settings crashGravatar Charles Lombardo2023-06-031-0/+4
|
* android: Fix cast for abstract settingsGravatar Charles Lombardo2023-06-034-5/+5
|
* android: Create xml for Material You themeGravatar Charles Lombardo2023-06-032-0/+58
|
* android: Remove check for API 29 in themesGravatar Charles Lombardo2023-06-032-15/+4
|
* android: Adjustments to home option cardGravatar Charles Lombardo2023-06-031-4/+10
| | | | Several spacing/color adjustments provided by Flam
* android: Use different colors for logo in options menuGravatar Charles Lombardo2023-06-032-3/+3
| | | | Reverting to the official logo colors
* android: New default theme colorsGravatar Charles Lombardo2023-06-032-30/+34
|
* android: Use libnx default iconGravatar Charles Lombardo2023-06-034-1/+1
| | | | Credit to jaames for the original icon
* android: enable LTOGravatar Liam2023-06-031-1/+2
|
* android: Show error if invalid keys file is selectedGravatar Charles Lombardo2023-06-032-0/+23
| | | | There aren't MIME types specific enough for filtering out files that aren't amiibo or production keys. So here we just check for the extensions "bin" or "keys" where appropriate and stop the process if incorrect. Previously you could select any document and it could cause the app to hang.
* android: Fix first time setup scrolling bugGravatar Charles Lombardo2023-06-032-18/+17
| | | | If you quickly scrolled from the second page to the first and then back, the next/back buttons would disappear.
* android: Fix A button preference keyGravatar Charles Lombardo2023-06-031-1/+1
|
* android: First time setup screenGravatar Charles Lombardo2023-06-0319-163/+769
|
* android: Prevent editing unsafe settings at runtimeGravatar Charles Lombardo2023-06-035-14/+35
| | | | There currently isn't a visual "disabled" cue for any of the view holders that aren't the switch setting. This will be improved in the future.
* android: Abstract settingsGravatar Charles Lombardo2023-06-0324-363/+418
| | | | Previously we could only add settings that would change our ini file. Now we can create abstract settings in our presenter to alter things like shared preferences for theme support!
* android: Implement gamepad inputGravatar german772023-06-036-11/+510
|
* android: Bump minimum version to Android 11Gravatar Charles Lombardo2023-06-031-1/+1
|
* android: Decouple status bar shade from navigation bar visibilityGravatar Charles Lombardo2023-06-033-14/+34
|
* android: Enable code minificationGravatar Charles Lombardo2023-06-035-22/+18
|
* android: Switch from a colored status bar to a custom viewGravatar Charles Lombardo2023-06-034-23/+35
| | | | Allows for smoother transitions with the search bar
* android: Adjustments to card_gameGravatar Charles Lombardo2023-06-031-20/+5
| | | | Removed a currently unused text view and moved to material text views.
* android: MainActivity overhaulGravatar Charles Lombardo2023-06-0332-626/+1031
| | | | | | This moves several parts of the main activity into fragments that manage themselves to react to changes. UI changes like the appearance of a new search view or when the games list changes now gets updated via multiple view models. This also starts a conversion to the androidx navigation component which furthers the goals mentioned previously with more fragment responsibility. This will eventually allow us to use one activity with interchanging fragments and multiple view models that are stored within that central activity. fdas
* android: Enforce Vulkan 1.1 support as minimumGravatar Charles Lombardo2023-06-031-3/+4
|
* android: Update app dependenciesGravatar Charles Lombardo2023-06-031-5/+5
|
* android: Convert gradle scripts to Kotlin DSLGravatar Charles Lombardo2023-06-032-190/+227
|
* android: settings: Add scaling filter & anti-aliasing options. (#66)Gravatar bunnei2023-06-034-0/+75
|
* android: video_core: Add support for disk shader cache. (#64)Gravatar bunnei2023-06-0312-4/+258
|
* android: config: Change docked mode and GPU accuracy to favor performance on ↵Gravatar bunnei2023-06-033-7/+11
| | | | Android.
* android: Initialize account managerGravatar german772023-06-031-0/+5
|
* android: Remove unsafe null checkGravatar german772023-06-031-4/+2
|
* android: Scale input overlay independently of system display scaleGravatar Charles Lombardo2023-06-032-30/+41
|
* android: Use apply instead of commit for shared preferencesGravatar Charles Lombardo2023-06-033-4/+3
| | | | Previously we were operating on the assumption that apply'd settings wouldn't be visible immediately. This isn't true and settings will be accessible via memory before being stored to disk. This reduces any potential stutters caused by saving to shared preferences.
* android: Add DPad slide toggleGravatar Charles Lombardo2023-06-035-2/+14
|
* android: Add relative stick center toggleGravatar Charles Lombardo2023-06-033-0/+13
|
* android: Make hash and branch accessible from BuildConfigGravatar Charles Lombardo2023-06-031-0/+25
|
* android: Backup shared preferences where applicableGravatar Charles Lombardo2023-06-032-0/+12
|
* android: Enable retaining app data after uninstallGravatar Charles Lombardo2023-06-031-1/+2
|
* android: Remove unused doFrame functionGravatar Charles Lombardo2023-06-031-2/+0
|
* android: Convert NativeLibrary to KotlinGravatar Charles Lombardo2023-06-0315-766/+523
|
* android: Remove LocalBroadcastManagerGravatar Charles Lombardo2023-06-0311-225/+17
| | | | | | This causes a couple of minor changes to directory initialization. We don't have a lengthy initialization step so we could spend less time creating state receivers and just run initialization on the main thread. We also don't have a situation where external storage will be a concern so checks are removed in favor of a binary check to see if initialization is ready. This additionally removes the unused DoFrame callback.
* android: Remove game databaseGravatar Charles Lombardo2023-06-0318-773/+154
| | | | The content provider + database solution was excessive and is now replaced with the simple file checks from before but turned into an array list held within a viewmodel.
* android: Adjust game icon loadingGravatar Charles Lombardo2023-06-031-15/+9
|
* android: Remove unused dimensions filesGravatar Charles Lombardo2023-06-032-9/+0
|
* android: Slightly reduce game card sizeGravatar Charles Lombardo2023-06-032-3/+3
|
* android: Only show company text view if it has contentGravatar Charles Lombardo2023-06-031-5/+8
|
* android: Fix check for ok text in software keyboardGravatar Charles Lombardo2023-06-031-1/+1
|
* android: Implement amiibo reading from nfc tagGravatar Narr the Reg2023-06-0313-4/+303
|
* android: Add toggle controls option to input overlayGravatar Charles Lombardo2023-06-035-6/+62
|