aboutsummaryrefslogtreecommitdiff
path: root/android
AgeCommit message (Collapse)Author
2023-03-05Minor adjustments now that OpenGLES 2 is the default driver on Android (#12391)ROllerozxa
2023-03-02Fix task ordering and more in Gradle Android buildsfan5
2023-02-18Android: Increase minimum SDK version to 21Muhammad Rifqi Priyo Susanto
Target/compiled SDK version is increased to 33. Build Tools, NDK, and Gradle are also updated.
2023-01-06Add dynamic exposure correction (#12959)x2048
* Add uniform for frame delta time * Adjust exposure in logarithmic (EV) space * Add network support and LUA API * Add testing mod
2022-11-30Android: Segmentation fault fix, PendingIntent flag, and other fixes (#12960)Muhammad Rifqi Priyo Susanto
* Android: Segmentation fault fix, PendingIntent flag, and other fixes - Information about the crosshair is sent after camera initialization. - Since API 31, PendingIntent requires mutability flag. - super (class) is called in onRequestPermissionsResult(). - GameActivity suppresses "unused" warning since most of its methods are called from native code. - Non-null safety is added for nullable function calls. - Warning/error logging is added for various function calls' return value. * Move utility functions into Utils.java - Some nullable functions are changed to be non-null functions. - Some null checking outside it is removed. - More annotations are added to functions and parameters.
2022-10-31Android: Increase target/compiled SDK version to 32 (#12911)Muhammad Rifqi Priyo Susanto
Build Tools, NDK, and Gradle are also updated. Repositories is changed from jcenter() to mavenCentral().
2022-08-25Fix and enable x86 build for Android (#12700)savilli
2022-08-04Continue with 5.7.0-devsfan5
2022-08-04Bump version to 5.6.0sfan5
2022-08-02Run Minetest update checker on startup (#7629)SmallJoker
This feature is enabled by default for non-Android release builds. Package maintainers may use -DENABLE_UPDATE_CHECKER=0 to disable it. Co-authored-by: rubenwardy <rw@rubenwardy.com> Co-authored-by: sfan5 <sfan5@live.de>
2022-07-22Use newer NDK r23c for android buildsfan5
2022-06-05Android: Add support for sharing debug.txt (#12370)rubenwardy
2022-05-21Fixes to Android build + option to turn LuaJIT on/off for testing purposes ↵paradust7
(#12334)
2022-02-26Move the codebase to C++14sfan5
2022-01-30Continue with 5.6.0-devsfan5
2022-01-30Bump version to 5.5.0sfan5
2022-01-08Fully remove bitmap font support (#11863)sfan5
Freetype is now a build requirement.
2021-11-27Update to Android target SDK 30 (#11746)rubenwardy
2021-10-31Replace uses of which(1) with command -vsfan5
2021-10-31Update Android to new dependency repo (#11690)sfan5
2021-10-15Use scoped app storage on Android (#11466)rubenwardy
From November 2021, the Play Store will no longer be accepting apps which use the deprecated getExternalStorageDirectory() API. Therefore, this commit replaces uses of deprecated API with the new scoped API (`getExternalFilesDir()` and `getExternalCacheDir()`). It also provides a temporary migration to move user data from the shared external directory to new storage. Fixes #2097, #11417 and #11118
2021-08-31Switch MapBlock compression to zstd (#10788)lhofhansl
* Add zstd support. * Rearrange serialization order * Compress entire mapblock Co-authored-by: sfan5 <sfan5@live.de>
2021-08-08Gettext support on Android (#11435)Pevernow
Co-authored-by: sfan5 <sfan5@live.de> Co-authored-by: =?UTF-8?q?Olivier=20Samyn=20=F0=9F=8E=BB?= <code@oleastre.be>
2021-06-21Move build/android directory to root of project (#11283)NeroBurner