aboutsummaryrefslogtreecommitdiff
path: root/android/app/src/main/java/net
AgeCommit message (Collapse)Author
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-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)
2021-11-27Update to Android target SDK 30 (#11746)rubenwardy
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-06-21Move build/android directory to root of project (#11283)NeroBurner