aboutsummaryrefslogtreecommitdiff
path: root/platform/android (follow)
Commit message (Collapse)AuthorAgeFilesLines
* added [presets] to ._sc_ and "android/shutdown_adb_on_exit" to editor_settingsAriel Manzur2016-02-271-0/+10
|
* Merge pull request #3428 from Hinsbart/android-gamepadpunto-2016-02-089-160/+668
|\ | | | | support gamepad remapping on android
| * use fallback mapping from listHondres2016-01-271-1/+1
| |
| * can use fallback mapping on all platformshondres2016-01-241-1/+1
| |
| * support gamepad remapping on androidhondres2016-01-249-159/+667
| |
* | Combies driver split and spawn fix, closes #3265Juan Linietsky2016-01-251-0/+2
|/
* fix export bugJuan Linietsky2016-01-201-1/+1
|
* -Remote deploy now uses FS over USB on Android, super fast!Juan Linietsky2016-01-201-0/+37
|
* Add ability to set "keep screen on" for androidvolzhs2016-01-164-9/+41
|
* Fix crash on android 6.0.1, fixes #3321mrezai2016-01-121-2/+2
|
* Update copyright in remaining files + prints in the UIRémi Verschelde2016-01-114-4/+4
|
* Fix bug related to EOF in Android FileAccessJuan Linietsky2016-01-091-1/+7
|
* Fix maven repositories bugmrezai2016-01-092-5/+6
|
* removed unnecesary comma in gradle templateJuan Linietsky2016-01-081-1/+1
|
* Renamed godot domain from com.android.godot (which was incorrect) to ↵Juan Linietsky2016-01-0829-106/+106
| | | | org.godotengine.godot
* -Removed ANT build system for Android, as it was deprecated by GoogleJuan Linietsky2016-01-08285-8836/+573
| | | | -Added new Gradle build system, as it is the required build system
* change android install location to automatic, closes #1997Juan Linietsky2016-01-031-1/+1
|
* Update copyright to 2016 in headersGeorge Marques2016-01-0126-26/+26
|
* Merge pull request #2956 from est31/add_system_wide_export_pathJuan Linietsky2015-12-081-13/+16
|\ | | | | Add way to look for templates at system wide level too
| * Add way to look for templates at system wide level tooest312015-11-301-13/+16
| | | | | | | | | | | | | | | | Useful for everybody wanting to package godot. Fixes #1026. -> Retain the old behaviour: path in error msg only when exporting. -> User templates override system templates
* | -several fixes to Android to work better on Tegra 3/4 devices, uses 16 bits ↵Juan Linietsky2015-12-026-4/+23
| | | | | | | | FBOs so all 2D shader effects should now work in every single Android device.
* | Merge pull request #2963 from akien-mga/pr-opus-arm-optRémi Verschelde2015-12-011-1/+2
|\ \ | |/ |/| Enable opus ARM optimisations only on ARM
| * Enable opus ARM optimisations only on ARMRémi Verschelde2015-12-011-1/+2
| | | | | | | | i.e. do not enable it for x86. Fixes #2962.
* | 0theora compilation fixesJuan Linietsky2015-11-251-0/+1
|/
* tegra 3 fixmikica1986vee2015-11-211-2/+21
|
* Merge pull request #2518 from masoudbh3/godot-iconsJuan Linietsky2015-11-191-0/+0
|\ | | | | Add icon to exe file in windows export
| * Add icon to exe file in windows exportmasoud bh2015-11-091-0/+0
| | | | | | | | | | | | | | | | | | add version_info and icon sections in "export to windows platform". add version_info and icon to godot exe file (editor & template exe). fix an problem in image class. change all default icons to android export icon (a little more rounded). create an python script for convert file to cpp byte array for use in 'splash.h'.
* | Merge pull request #2707 from akien-mga/masterJuan Linietsky2015-11-181-2/+2
|\ \ | | | | | | Cosmetic fixes to SCons buildsystem
| * | Cosmetic fixes to SCons buildsystemRémi Verschelde2015-11-011-2/+2
| |/ | | | | | | | | | | - Removed trailing spaces - Made sure all indentation is done using tabs (fixes #39) - Potentially fixed an identation issue for openssl check
* | Merge pull request #2814 from masoudbh3/android-fa-localeJuan Linietsky2015-11-181-0/+16
|\ \ | | | | | | Android add FA(persian) locale strings
| * | Android add FA(persian) locale stringsmasoud bh2015-11-191-0/+16
| | |
* | | Merge pull request #2691 from volzhs/android_paymentJuan Linietsky2015-11-183-41/+150
|\ \ \ | |/ / |/| | improve android payments
| * | improve android paymentsvolzhs2015-10-283-41/+150
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GodotPaymentV3 currently consumes purchased item right after purchasing. But, some in-app item should not consume like "remove ads permanently" So, I added "setAutoConsume(boolean)", "requestPurchased()", "consume(sku_string)". AutoConsume is true by default as before. usage: func _ready(): var payment = Globals.get_singleton("GodotPayments") payment.setPurchaseCallbackId(get_instance_ID()) payment.setAutoConsume(false) # default : true payment.requestPurchased() # callback : has_purchased payment.purchase("item_name") # callback : purchase_success, purchase_fail, purchase_cancel, purchase_owned payment.consume("item_name") # callback : consume_success func purchase_success(receipt, signature, sku): print("purchase_success : ", sku) func purchase_fail(): print("purchase_fail") func purchase_cancel(): print("purchase_cancel") func purchase_owned(sku): print("purchase_owned : ", sku) func consume_success(receipt, signature, sku): print("consume_success : ", sku) func has_purchased(receipt, signature, sku): if sku == "": print("has_purchased : nothing") else: print("has_purchased : ", sku)
* / Skip META-INF from Android Templatemasoud bh2015-11-141-0/+4
|/
* Merge pull request #2203 from volzhs/fix_android_paymentsJuan Linietsky2015-10-171-1/+3
|\ | | | | Fix android payments
| * Merge branch 'master' of https://github.com/okamstudio/godot into ↵volzhs2015-07-011-4/+4
| |\ | | | | | | | | | fix_android_payments
| * | fix crash by payments when run on android 5.1.1 device.volzhs2015-06-291-1/+3
| | | | | | | | | | | | (http://stackoverflow.com/questions/24480069/google-in-app-billing-illegalargumentexception-service-intent-must-be-explicit)
* | | Merge pull request #2479 from firefly2442/cppcheck-unusedvarsJuan Linietsky2015-10-172-3/+2
|\ \ \ | | | | | | | | ran cppcheck, found unused variables
| * | | ran cppcheck, found unused variablesfirefly24422015-09-162-3/+2
| | | |
* | | | Merge pull request #2474 from masoudbh3/android-armeabi-v7aJuan Linietsky2015-10-173-113/+57
|\ \ \ \ | | | | | | | | | | Fix android build script
| * | | | android remove "gen" folder from git.masoud bh2015-09-162-79/+0
| | | | |
| * | | | Fix android build scriptmasoud bh2015-09-161-34/+57
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | some fixes for android build script. remove armv6,x86 options and add "android_arch" option for select compiler architecture (armv7,armv6,x86)(default armv7). add architecture suffix for output files and you can compile for several architecture simultaneously. example: libgodot.android.opt.debug.armv7.so libgodot.android.opt.debug.armv7.neon.so libgodot.android.opt.debug.armv6.so libgodot.android.opt.debug.x86.so now we can enable/disable neon on armv7 with "android_neon" option (default enable). add "NDK_TARGET_X86" option for select toolchain to use for the NDK x86 (default x86-4.8). change inputs model for "ndk_platform" option (default android-15). fix armv7 ccflags. with this patch, must put libgodot_android.so file in specific architecture folder: armv7 (default): <android-java>/libs/armeabi-v7a/ armv6: <android-java>/libs/armeabi/ x86: <android-java>/libs/x86/
* | | | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2015-10-132-1/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: platform/windows/detect.py
| * | | | Add support for Opus audio formatGeorge Marques2015-10-021-0/+4
| | | | |
| * | | | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2015-09-241-8/+8
| |\ \ \ \
| * | | | | Added ability to set custom mouse cursors. Not hardware accelerated yet.Juan Linietsky2015-09-241-1/+1
| | |/ / / | |/| | |
* | | | | Fixed theora playback. Removed theoraplayer.Juan Linietsky2015-09-261-2/+0
| |/ / / |/| | | | | | | | | | | Still need to get proper audio output latency in some platforms.
* | | | Ability to visually debug geometry visually:Juan Linietsky2015-09-201-8/+8
|/ / / | | | | | | | | | | | | | | | | | | -Visible 2D and 3D Shapes, Polygons, Tile collisions, etc. -Visible Navmesh and Navpoly -Visible collision contacts for 2D and 3D as a red point -Customizable colors in project settings
* | | merged some stuff for okamJuan Linietsky2015-09-0311-22/+42
| | |
* | | Merge pull request #2302 from antonyjones67/AndroidTemplateCompileWindowsJuan Linietsky2015-08-081-1/+41
|\ \ \ | | | | | | | | Fixes compile bug for Android template on Windows.