summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
AgeCommit message (Collapse)Author
2019-01-02Android: Edit the text that pops up on game launchJosJuice
Some of the recent reviews on Google Play express trouble finding the emulation activity menu. One of them thought you were supposed to go to the settings accessible through the main activity to configure the virtual controller buttons. This commit changes the text so that the user now explicitly is told to swipe down from the top of the screen to access the menu. In exchange, I removed the exact selections to make in the menu so that the text wouldn't get too long, but I think it shouldn't be too hard to understand once you know how to open the menu.
2019-01-02Merge pull request #7591 from weihuoya/setting-descJMC47
Android: show setting value as description
2018-12-25Android: show setting value as descriptionweihuoya
2018-12-21Android: Add jit debug menu optionszackhow
2018-12-14Android: fix/ignore L2/R2 buttonszackhow
L2/R2 will trigger a key press and an axis event if the trigger is pressed fully down Was incorrectly ignoring L1/R1 key presses
2018-12-13Android: fix gc adapter initzackhow
init write not read
2018-11-13Merge pull request #7427 from weihuoya/setting-fxPierre Bourdon
fx settings for android
2018-11-13Android: fx settingweihuoya
2018-11-09Merge pull request #7551 from zackhow/fixffsPierre Bourdon
Android: Fix crash on instant rotate
2018-11-07AndroidTv: don't show landscape lock setting for leanbackzackhow
2018-11-07Android: Fix crash on instant rotatezackhow
Delay the creation of the emulation fragment if: the device is a phone, if emulation should be locked to landscape, and the current orientation is portrait.
2018-11-07Merge pull request #7532 from mahdihijazi/mahdi/remove_cxl_btnPierre Bourdon
Android: Remove the cancel button from the file browser
2018-11-07Android: Add defer EFB copies to settingsStenzek
2018-11-03Merge pull request #7541 from zackhow/notoreoJosJuice
AndroidTv: Don't run oreo channels when not on oreo
2018-11-03AndroidTv: Don't run oreo channels when not on oreozackhow
2018-11-03Android: don't try to pause emulation when not runningzackhow
Forcing landscape at emulation start revealed a bug where if the activity was recreated before emulation started then it would get stuck in a paused state
2018-10-30Android: fix landscape lockzackhow
If emulation started in landscape then it wouldn't lock to landscape, thus allowing a rotation to portrait then immediately back to landscape. Also locking to landscape didn't need to be called from another thread, so that was removed as well
2018-10-29Android: Remove the cancel button from the file browsermahdihijazi
Fix the regresion from #7520, also it applies the change to the directory picker only.
2018-10-29Android: Remove the use of restericted API and give AS a breakmahdihijazi
2018-10-29Android: Remove dead code and related lib <circleimageview>mahdihijazi
2018-10-29Android: Remove rxjava libmahdihijazi
No need to keep rxjava lib around for one simple use case
2018-10-29Android: Update Picasso lib to latest versionmahdihijazi
2018-10-28Android: fix custom game control uizackhow
Missed in previous rebase
2018-10-28Android: fix ATV not exitingzackhow
regression from 1e3a2979006ce5da1b8e7f196039def455411c9b PR7518
2018-10-28Android: Update rumble settings for use in game profileszackhow
2018-10-28Android: Move profile check to when it is savingzackhow
2018-10-28Android: Speed up game settings savingzackhow
Previously would take several seconds to save, sometimes causing ANRs, which was made worse when adding all the controller values. Now we only load/save each section instead of doing it for each setting. Also added a method to save an individual setting.
2018-10-28Android: Add game specific gc/wii controller settingszackhow
2018-10-28Merge pull request #7443 from zackhow/device-rumblePierre Bourdon
Android: Add controller rumble support
2018-10-28Merge pull request #7520 from mahdihijazi/app_bundlesPierre Bourdon
Android: Change the file browser dialog ok button title
2018-10-28Merge pull request #7518 from weihuoya/remove-animationPierre Bourdon
[Android] Remove enter and exit transition
2018-10-27Android: Add controller rumble supportzackhow
Android can be funky with controller vibration. Of the three controlers I have that contain a vibrator(PS3, Xbox360, 2017 Shield controller), only the Xbox360 controller registered as having a vibrator. So YYMV depending on the driver support of the device.
2018-10-27Android: Don't create a savestate when rotatingJosJuice
2018-10-27Android: Change the file browser dialog ok button titlemahdihijazi
I hope this will make it more clear to users that they are suppose to select the dircetory that has the games.
2018-10-27android: remove enter and exit transitionweihuoya
2018-10-25Merge pull request #7514 from zackhow/no-rumblePierre Bourdon
Android: Don't require vibrate permission
2018-10-25Android: Don't require vibrate permissionzackhow
Google Play won't distribute the app to devices that do not allow the vibrate permission if required is not false.
2018-10-24Android: lock screen to landscape by defaultzackhow
A new setting has been added to the general config to allow rotation. This should resolve a lot of crash complaints due to screen rotation.
2018-10-13Android: fix crash on rotatezackhow
2018-10-12Merge pull request #7466 from zackhow/hide-savestateMat M
Android: Require user to enable savestate menu options
2018-10-07Android: Require user to enable savestate menuszackhow
With the nature of android updates invalidating save states, it's best to hide these options unless enabled by the user. The option to use savestates can now be enabled via the General settings menu.
2018-10-05Merge pull request #7413 from zackhow/launcher-crashJosJuice
Android: Run Directory Initialization as a thread instead of service
2018-09-26Merge pull request #7392 from weihuoya/android-menu-fxJosJuice
Menu show action fx for android
2018-09-21Android: Layout for emulation when phone is portraitzackhow
This sets the surfaceview to the top half of the screen instead of it sitting in the middle which gives more room for onscreen controls.
2018-09-21Android: add reset touch overlayzackhow
2018-09-21Android: Add default portrait touch overlayszackhow
2018-09-21Android: add profile for portrait touch overlayzackhow
2018-09-21Merge pull request #7400 from zackhow/phone-rumbleMarkus Wick
Android: Add rumble for phone
2018-09-14Android: Run Directory Initialization as a thread instead of servicezackhow
Two reasons for this change. First, it appears that some android launchers do some sort of call into the application when long pressing the app icon, which in turn calls the DirectoryInit service. This was ok to do prior to Oreo but will cause crashes with the new restrictions on services running in the background. Which leads to the second reason that DirectoryInit doesn't need to be a service at all since these actions are required for dolphin to function and shouldn't be a scheduled action. So we instead just kick this off in a new thread and send the broadcast when done.
2018-09-07Android: Add rumble for phonezackhow
This currently only supports using the internal vibrate on a phone for rumble.