aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/android
AgeCommit message (Collapse)Author
2019-11-01OPENGL: Implement high DPI support on Android (#1895)Cameron Cawley
* OPENGL: Implement high DPI support on Android * PSP2: Fix build
2019-10-23ANDROID: Simplify handling of menu/back button eventsCameron Cawley
2019-10-23ANDROID: Add swap menu and back buttons optionCameron Cawley
2019-10-21ANDROID: Set target SDK to 28Thanasis Antoniou
2019-10-18ANDROID: Fix warningCameron Cawley
2019-10-16ANDROID: Use more portable directory query methodEugene Sandulenko
2019-10-11ANDROID: Fix audio cd manager crash upon exitThanasis Antoniou
2019-10-08ANDROID: Ask for external storage access onCreate()Thanasis Antoniou
This is a quick fix, it needs to be improved upon With this fix on devices with API >= Marshmallow (6.0.1) the ScummVM app will ask for the permission during runtime onCreate(), and not only when trying to browse the list of folders and files. However, it is only a quick fix, because the original behavior will still kick in and the prompt to Quit because no SD Card was detected will be displayed anyway. So even if the user grants access during runtime, they will still be forced to exit the app and will have to relaunch.
2019-10-06ANDROID: Update starting version code for next release apks to 40Thanasis Antoniou
2019-10-05ANDROID: Set target SDK to 26 to AndroidManifest.xml and project.properties ↵Thanasis Antoniou
files
2019-10-05ANDROID: Bump the target SDK to match the Google Play releaseEugene Sandulenko
2019-10-05ANDROID: Added info about historical release version codesEugene Sandulenko
2019-09-27ANDROID: Added more logic for scraping the storage pathsEugene Sandulenko
2019-09-27ANDROID: Request permissions to external storageEugene Sandulenko
2019-09-27ANDROID: Fix exceptionEugene Sandulenko
2019-09-27ANDROID: Added list of external storages to the list of accessible directoriesEugene Sandulenko
2019-09-27ANDROID: Hook getAllStorageLocations() into JNIEugene Sandulenko
2019-09-27ANDROID: Hook external storage class into ScummVMHelperEugene Sandulenko
2019-09-27ANDROID: Turn map into spliced list for easier marshallingEugene Sandulenko
2019-09-27ANDROID: Initial code for external storage enumeratorEugene Sandulenko
2019-09-24ANDROID: Use _system->destroy() instead of just delete in JNI::Destroy()Thanasis Antoniou
2019-09-23ANDROID: Remove duplicate _system->quit() from JNI::Destroy()Thanasis Antoniou
Since it is already called in Jni::main after scummvm_main() returns. The second call in destroy caused crashes on some devices.
2019-09-23ANDROID: Fix crash when exiting a game (Blade Runner)Thanasis Antoniou
2019-09-15ANDROID: Use FORBIDDEN_SYMBOL_EXCEPTION_getenv for browser_lastpath purposesThanasis Antoniou
2019-09-15ANDROID: Set default browser_lastpath to /storageThanasis Antoniou
Avoid use of get_env
2019-09-15ANDROID: Set default browser_lastpathThanasis Antoniou
2019-09-08ANDROID: Rewrite to make use of OpenGLGraphicsManager (#1695)Cameron Cawley
* ANDROID: Rewrite to make use of OpenGLGraphicsManager * ANDROID: Fix emulated mouse button up events
2019-08-20ANDROID: Use a better icon for the on screen controlCameron Cawley
Modified from https://www.iconfinder.com/icons/352464/keyboard_icon, which is available under the Creative Commons (Attribution-Share Alike 3.0 Unported) license.
2019-08-20ANDROID: Add a button to show the virtual keyboardCameron Cawley
2019-08-18ANDROID: Don't deinitialize the EGL surface when pausing the applicationCameron Cawley
Fixes Trac#6129
2019-08-02ANDROID: Don't hide the virtual keyboard when the Enter key is pressedCameron Cawley
2019-07-23ANDROID: Fix some Codacy warningsCameron Cawley
2019-07-08BUILD: Package networking and virtual keyboard files on all platformsCameron Cawley
2019-06-21ANDROID: Move isConnectionLimited into OSystemCameron Cawley
2019-05-09ANDROID: Make pushEvent take 7 parameters instead of 6Cameron Cawley
2019-04-20ANDROID: Add a pthreads-based mutex managerCameron Cawley
2019-04-12ANDROID: Factor event pushing into pushEventCameron Cawley
Originally from ResidualVM.
2019-04-12ANDROID: Move event types to a separate fileCameron Cawley
Originally from ResidualVM.
2018-11-03ANDROID: Fix a -Wformat-security warningCameron Cawley
2018-10-05ANDROID: Implement clipboard supportCameron Cawley
2018-07-29ANDROID: Use the dedicated GUI option for enabling the touchpad modeCameron Cawley
2018-07-29ANDROID: Replace getPixelFormatName function with PixelFormat::toStringCameron Cawley
2017-11-25ANDROID: Fix illegal-in-C++11 narrowing conversionsColin Snover
2017-11-19EVENTS: Rename synthetic to kbdRepeatBastien Bouclet
2017-10-15BACKENDS: Constify PaletteManager::grabPalette implementationsColin Snover
2016-09-10CLOUD: Move openUrl to OSystemThierry Crozat
2016-08-30Merge pull request #433 from klusark/assetsEugene Sandulenko
ANDROID: Update the asset archive code to use AAssets
2016-08-24JANITORIAL: Remove spaces at the end of the lineAlexander Tkachev
I knew there were some, but I wanted to fix them once, instead of doing it all the time.
2016-08-24CLOUD: Add Networking::Connection::isLimited()Alexander Tkachev
`false` everywhere by default, but works on Android (`true` if not Wi-Fi).
2016-08-24CLOUD: Add openurl-android.cppAlexander Tkachev