b97401f304
Update copyright statements to 2020
...
And apply clang-format 10 to the codebase.
2020-08-13 22:58:13 +02:00
7562ce053a
Update copyright statements to 2019
2019-06-04 11:41:49 +02:00
5f795e6261
Upgrade & fix Android build scripts
2019-03-19 21:53:54 +01:00
bb13fa896e
Style: Format code with clang-format 6.0.1
2018-07-18 17:56:12 +02:00
2ea63bc581
Merge pull request #19083 from xsellier/bugfix/print-error-less-hardcore
...
Allow users to catch errors for android platforms and prevent exception throwing
2018-05-25 10:19:40 +02:00
6fc89d0ce3
Allow users to catch errors for android platforms and prevent exception throwing
2018-05-21 11:39:40 -04:00
ac49392627
Querying sku might lead to crash if 'mService' is null
2018-05-17 14:06:50 -04:00
ede27690c3
Remove android compatibility under API 16
2018-05-09 05:43:53 +09:00
9efd5de872
Add a check to the PurchaseTask.purchase method to prevent NullPointerException
2018-05-07 20:54:52 -04:00
b6a2d5f508
Closing the app might lead to a crash due to an IllegalArgumentException
2018-05-04 23:11:16 -04:00
72d81d5903
Refactor PaymentsManager according to Google's guidelines
2018-04-28 12:39:48 -04:00
1c81775f8a
Merge pull request #17999 from xsellier/bugfix-17987/input-device-management
...
Prevent a device to be added/deleted more than once on Android
2018-04-05 18:34:03 +02:00
14a5888a80
Merge pull request #17954 from xsellier/bugfix/null-pointer-exception-android-payment
...
Prevent NullPointerException when data is null during a Payment
2018-04-05 18:31:14 +02:00
fb5a601217
Prevent a device to be added/deleted more than once on Android
2018-04-05 10:15:57 -04:00
d87578c3cd
Prevent NullPointerException when data is null during a Payment
2018-04-05 09:59:02 -04:00
21d03317d7
Initialize sensors to default values for Android platform
2018-04-05 09:50:22 -04:00
4d2853fcdc
Add clipboard operation for android OS
2018-04-03 13:27:00 -04:00
88e779cd5e
Improve android java support
...
- Use Log.d/Log.w instead of System.printf
- Remove commented code
- Cherry-pick: Manual backport of d698814367
2018-02-22 13:36:34 -05:00
0af3f8e053
Backport of clang-format 7cb6e6b723
2018-02-22 13:00:36 -05:00
546b48813f
Add signals and a check function for Android service connectivity.
...
- Add a iap_connect and iap_disconnect events for android platform.
- Add isConnected() function returning true if its connected to android service, false otherwise
2018-02-13 19:03:51 -05:00
13d05cbb49
Merge pull request #15278 from volzhs/android-update-build-2.1
...
Update android build tool to latest [2.1]
2018-01-03 18:06:35 +01:00
62475459fa
Update android build tool to latest
2018-01-03 17:06:48 +09:00
2712014744
Update copyright statements to 2018
...
Happy new year to the wonderful Godot community!
2018-01-02 11:27:24 +01:00
2ba23c8ae7
Handling BackPress event [Android]
2017-10-03 11:33:37 +05:30
24f2864e78
Fix TrustManager for Android
2017-09-21 06:23:40 +09:00
9d598833d2
Use HTTPS URL for Godot's website in the headers
2017-08-27 14:11:45 +02:00
f7e4190b19
update gradle-android buildtool for 2.1
2017-07-30 12:08:36 +07:00
d432ad1e17
Improve documentation of thirdparty code snippets
...
(cherry picked from commit c8aea60324 )
2017-05-26 23:53:14 +02:00
d4ef6216d3
Fix android payment logical error
...
getting sku detail runs only if mod != 0 which means querying 20*n will not get sku details.
referenced from https://github.com/googlesamples/android-play-billing/blob/master/TrivialDrive/app/src/main/java/com/example/android/trivialdrivesample/util/IabHelper.java#L1029-L1062
2017-05-19 12:11:59 +09:00
c7d3aac505
Update to latest gradle
2017-05-12 14:38:23 +09:00
a6c74136b5
Fix possible memory leak for Android
...
/godot_dev/platform/android/java/src/com/google/android/vending/expansion/downloader/impl/DownloaderService.java:575: Error: The WIFI_SERVICE must be looked up on the Application context or memory will leak on devices < Android N. Try changing to .getApplicationContext() [WifiManagerLeak]
mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Explanation for issues of type "WifiManagerLeak":
On versions prior to Android N (24), initializing the WifiManager via
Context#getSystemService can cause a memory leak if the context is not the
application context. Change context.getSystemService(...) to
context.getApplicationContext().getSystemService(...).
1 errors, 0 warnings
2017-05-12 14:38:15 +09:00
7919ce782b
Fix error or download again if use obb for Android
2017-04-26 03:43:38 +09:00
e9b045d9e5
Add "Godot Engine contributors" copyright line
2017-04-08 00:45:24 +02:00
cc6810c030
Android gravity vector Godot 2.1
2017-03-21 22:45:24 +11:00
c8edf071da
Fix handling input for Android
2017-03-04 00:12:35 +09:00
d8223ffa75
Welcome in 2017, dear changelog reader!
...
That year should bring the long-awaited OpenGL ES 3.0 compatible renderer
with state-of-the-art rendering techniques tuned to work as low as middle
end handheld devices - without compromising with the possibilities given
for higher end desktop games of course. Great times ahead for the Godot
community and the gamers that will play our games!
(cherry picked from commit c7bc44d5ad )
2017-01-12 19:15:30 +01:00
2e74bdab35
Add alert window on Android
...
(cherry picked from commit 9a20068ab7 )
2017-01-12 19:15:26 +01:00
3e127ce3fd
Fix Directory.dir_exist/get_current_dir for 'res://' on Android
...
Fix #7014
(cherry picked from commit 8d454ed9a7 )
2016-11-15 08:34:51 +01:00
c56ea7cf91
Android: Rename values-zh to values-zh-rCN ( #6063 )
...
(cherry picked from commit 4f6a21b0df )
2016-08-08 18:15:55 +02:00
1913e4a040
Android: Add support for Traditional Chinese (HK) ( #6061 )
...
(cherry picked from commit 664b5b5137 )
2016-08-08 18:15:49 +02:00
2b35ba4815
Android: Add support for Traditional Chinese (TW) ( #6061 )
...
(cherry picked from commit 8ab4acd17f )
2016-08-08 18:15:43 +02:00
9213400cd5
Merge pull request #5415 from volzhs/improve-android-payment
...
Improve android payment
2016-07-24 12:18:13 -03:00
0717893772
Implement get_screen_dpi() on Android
2016-07-20 14:54:48 +02:00
79cb91dc84
Add querying details of IAP items for android
2016-07-18 23:45:58 +09:00
f26f181ba9
Fix can't get all info if user purchases many items and not consumed
2016-07-18 23:45:58 +09:00
370ae3512d
Added gyroscope support to Godot and Android
2016-07-16 01:43:32 +08:00
e7b2626707
Make Android build smarter (SCons + Gradle)
...
Upgrade Gradle and Android plugin for Gradle
Disable all signing and zip-aligning for the export templates
Give correct names to generated APKs
Put .so files built by SCons right where Gradle has to pick them according to arch & build type
Downgrade NDK platform to 14 to match minSdkVersion
2016-06-27 10:49:15 +02:00
6d37253be5
Fix Android sensors polling rate on resume
...
Fix #5306
2016-06-24 21:00:04 -03:00
a5a5bdef25
Remove duplicated aidl for android
...
Tested IAP function on device.
2016-06-25 01:11:21 +09:00
0ab05b09e4
Fixed iCCp chunk in pngs
...
neccesary for libpng 1.6.27 to work silently
2016-06-22 21:13:29 +02:00