summaryrefslogtreecommitdiff
path: root/platform/android
AgeCommit message (Collapse)Author
2016-06-26Merge pull request #5395 from vnen/android-sensorsRémi Verschelde
Fix Android sensors polling rate on resume
2016-06-26Merge pull request #5390 from volzhs/jni-stringarrayRémi Verschelde
Fix string array parameter check with jni
2016-06-25Added function to notify ScriptLanguage when a thread is created/freed, ↵Juan Linietsky
allows scripts to allocate a stack there via TLS
2016-06-25Gradle: remove trailing spacesRémi Verschelde
2016-06-24Fix Android sensors polling rate on resumeGeorge Marques
Fix #5306
2016-06-25Fix string array parameter check with jnivolzhs
2016-06-25Remove duplicated aidl for androidvolzhs
Tested IAP function on device.
2016-06-23Merge pull request #5362 from J08nY/pngRémi Verschelde
libpng: New version 1.6.27
2016-06-23Merge pull request #5235 from volzhs/fix-android-exportRémi Verschelde
fix errors while exporting android
2016-06-22Fixed iCCp chunk in pngsJ08nY
neccesary for libpng 1.6.27 to work silently
2016-06-22Merge pull request #5357 from volzhs/fix-locale-androidRémi Verschelde
fix android resource locale
2016-06-22fix android resource localevolzhs
2016-06-21correct current Intent for androidvolzhs
2016-06-19Merge pull request #5135 from volzhs/android-manifestRémi Verschelde
fix android support screen property for large screen
2016-06-18Drop empty files that are not used anywhereRémi Verschelde
Part of #5272
2016-06-18Add missing license headers in our source files (#5255)Rémi Verschelde
Also removes a couple wrong Godot headers from third-party source files.
2016-06-16fix errors while exporting androidvolzhs
2016-06-15Handle tmp files properly on Android exportPedro J. Estébanez
2016-06-13Zip-align exported APKPedro J. Estébanez
2016-06-11Fix typoPedro J. Estébanez
2016-06-11Keep certain assets uncompressed on Android exportPedro J. Estébanez
2016-06-10fix android support screen property for large screenvolzhs
2016-06-07-Heavily improved editor startup and exit performanceJuan Linietsky
2016-06-07Merge pull request #4729 from volzhs/android-23Rémi Verschelde
Supporting Android API 23 (Android 6.0)
2016-06-01Remove Make-related flags from Android buildGeorge Marques
They were wrongly placed, creating a file named "-fpic" instead of applying "-fpic" to the build. This file was in .gitignore, which made it less noticiable. This also adds build.gradle to .gitignore.
2016-05-30Icon: Remove more grey capsules behind official logoRémi Verschelde
2016-05-27Add magnetometer sensor support for Androidfluffrabbit
2016-05-25Add comments for NotificationCompat to support API < 16volzhs
2016-05-24fix compatibility for Android API 14 with supporting API 23volzhs
using ``NotificationCompat`` in ``support-v4`` library will increase APK filesize a little bit, but it guarantees to run OK with API 4+ tested with API 19 and 23 devices
2016-05-24fix unexpected char: '\' error on windowsvolzhs
error occurred when register additional directory for android module on windows. ### config.py ### ``` def can_build(plat): return plat=="android" def configure(env): if (env['platform'] == 'android'): env.android_add_res_dir("android/res") ```
2016-05-21remove trailing whitespaceHubert Jarosz
2016-05-20Supporting Android API 23 (Android 6.0)volzhs
If we update build gradle to use ``compileSdkVersion 23``, ``org.apache.http`` package causes error. (issue #4711) We need to use ``useLibrary 'org.apache.http.legacy'`` to solve this problem. To use ``useLibrary``, we need to use latest gradle also. And now, we faced another problem with ``APK Expansion`` java sources. ``` /platform/android/java/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java 137 : mCurrentNotification.setLatestEventInfo(mContext, mCurrentTitle, mCurrentText, mContentIntent); // causes error ``` So, some of APK Expansion java sources are updated by referencing commits from https://github.com/danikula/Google-Play-Expansion-File And dropped V3CustomNotification.java which was for android 3.0, since godot supports android 14 (4.0) above officially. Unfortunately, another problem, The 'MissingTranslation' error was occurred. So, build.gradle is updated to use ``disable 'MissingTranslation'`` Additionally, I updated ``buildToolsVersion``, ``targetSdkVersion`` to latest version. I tested APK Expansion funtionality on Android 6.0 (Nexus 9, Nexus 6p) and Android 4.4 (Galaxy Note 2) with Google Developer console.
2016-05-19Android buildsystem: Drop obsolete NDK_TOOLCHAIN argumentRémi Verschelde
It was a duplicate of NDK_TARGET, and not used for anything.
2016-05-01OSX: Fix lib suffix for Android lib (#4499)Rémi Verschelde
Fixes #1452.
2016-04-28Move export GUI debug toggle to export settings windoweska
2016-04-19remove unused resources and add korean locale for androidvolzhs
- remove unused resources in platform/android/java/res/values/strings.xml - add korean language resource for apk expansion download screen
2016-04-02Remove trailing spacesRémi Verschelde
2016-03-20Merge pull request #4105 from akien-mga/pr-android-shutdown-adbRémi Verschelde
Expose android/shutdown_adb_on_exit parameter
2016-03-20Expose android/shutdown_adb_on_exit parameter and default to trueRémi Verschelde
It was added in 30d0ca9 for the Steam build but only enabled when parsing a ._sc_ file that would define it. It is now available for all users to toggle, in and outside of Steam. Fixes #4073.
2016-03-20Add support for gnu-libstc++-4.9 needed by recent NDK versionsblubee
The 4.9 version is the default one, people can still build using 4.8 with older NDK versions by setting the (optional) NDK_TARGET and NDK_TARGET_X86 environment variables.
2016-03-18Add -r flag to adb install for keep app user datasanikoyes
2016-03-09remove trailing whitespaceHubert Jarosz
2016-03-02fix gradle build on windowsvolzhs
2016-02-27added [presets] to ._sc_ and "android/shutdown_adb_on_exit" to editor_settingsAriel Manzur
2016-02-08Merge pull request #3428 from Hinsbart/android-gamepadpunto-
support gamepad remapping on android
2016-01-27use fallback mapping from listHondres
2016-01-25Combies driver split and spawn fix, closes #3265Juan Linietsky
2016-01-24can use fallback mapping on all platformshondres
2016-01-24support gamepad remapping on androidhondres
2016-01-20fix export bugJuan Linietsky