summaryrefslogtreecommitdiff
path: root/Source/Android
AgeCommit message (Collapse)Author
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-24Merge pull request #7508 from zackhow/lock-landscapeMat M
Android: lock screen to landscape by default
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-20VideoBackends: Pass window system info from host on creationStenzek
2018-10-20Drop Host_GetRenderSurface and pass display to backendStenzek
2018-10-20Refactoring and cleanup of GLInterface (now GLContext)Stenzek
2018-10-13Android: fix crash on rotatezackhow
2018-10-12Merge pull request #7437 from stenzek/graphics-options-raceMat M
Fix race condition caused by opening graphics options while running
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-10-02Android: Fix blue guitar fret for emulated Wii RemotesJosJuice
2018-09-28Remove unused Host_ShowVideoConfigStenzek
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-07Fix lintzackhow
2018-09-07Android: Add rumble for phonezackhow
This currently only supports using the internal vibrate on a phone for rumble.
2018-09-03use app:showAsActionweihuoya
2018-08-31Merge pull request #7387 from zackhow/covers-nostretchAnthony
Android: Fix cover stretching and show more games per row
2018-08-31Android: show more games per rowzackhow
2018-08-30Android: Fix cover stretchingzackhow
2018-08-29Android: fix crash if user is offlinezackhow
If the user is offline, then there won't be a network response. Just debug log that the report couldn't send and move on
2018-08-28Android: Analytics - get android ui type when called instead of setting it ↵zackhow
ahead of time It's possible to not have set the device type if the user launches a game without going to the main activity(like launching from the TV menu)
2018-08-27Profiler: Migrate global g_ProfileBlocks boolean to JitOptionsLioncash
This global belongs in the JitOptions structure, as it's a conditional setting (A.K.A. option) that changes the behavior of what the JIT does. Plus it keeps the scope of the variable constrained to the general area it's intended to be used and nothing further.
2018-08-26Reformat Android coderiking
2018-08-26Update code style file, remove old style .jarriking
2018-08-27Merge pull request #7339 from weihuoya/cache-all-pagePierre Bourdon
Android: cache all page, avoid image flicking when swipe from last page to first page
2018-08-27Merge pull request #7350 from zackhow/android-analyticsPierre Bourdon
Android: Add usage statistics to android
2018-08-27Merge pull request #7355 from hackbar/style-cleanupPierre Bourdon
Style cleanup
2018-08-27Merge pull request #7330 from Ebola16/314Pierre Bourdon
Update Android Gradle Plugin to 3.1.4
2018-08-27Merge pull request #7353 from hackbar/cleanupPierre Bourdon
Cleanup
2018-08-26Add Android code style enforcement to lint.shriking
This requires buildbot changes: the path to the Android Studio installation must be supplied in an environment variable. Modified files are copied out to a temporary directory, Android Studio is asked to format the files, and a git diff is performed.
2018-08-25Android: Analytics - Set new session after being closed for 6 hourszackhow
2018-08-24Android: add a description for 'Compile Shaders Before Starting'Mike
Before this, it was using 0 as a resource ID. That has undefined behavior, and seemed to use a previous string.