Commit Graph

6385 Commits

Author SHA1 Message Date
cb39514705 Fix NotificationService implementation
- Fix #6385. (Maybe the reason is, the call to stopForeground() with STOP_FOREGROUND_DETACH ensures the notification is shown so it reposts the notification?)
- Use FOREGROUND_SERVICE_IMMEDIATE on Android 12+ to make sure the downloading notification always shows immediately
2023-01-09 00:10:52 +08:00
78a444d601 Wait for root service to bind 2022-12-30 15:52:41 -08:00
37b81ad1f6 Refine module preparation return value 2022-12-26 17:17:41 -08:00
7871c2f595 Update deps 2022-12-26 17:16:26 -08:00
57d83635c6 Check stub.xz existence 2022-12-26 16:07:04 -08:00
76fbf4634a Update scripts 2022-12-26 16:07:04 -08:00
7ce4bd3330 Copy stub APK into output directory 2022-12-26 16:07:04 -08:00
ad0e6511e1 Stop embedding stub.apk in magiskinit 2022-12-26 16:07:04 -08:00
a4a734458b Fix network capabilities 2022-12-26 13:48:17 -08:00
f989756b93 Added Swahili Translation 2022-12-26 03:30:44 -08:00
5763a3d908 Support replacing existing .rc by overlay.d
Co-authored-by: topjohnwu <topjohnwu@gmail.com>
2022-12-26 03:28:10 -08:00
1b745ae1a0 Use latest build tools 2022-12-26 02:02:21 -08:00
b6d50bea2c Release new canary build 2022-12-26 00:33:02 -08:00
831a398bf1 Check Python 3.8+ 2022-12-26 00:09:27 -08:00
a848783b97 Guard boot stages more precisely
Close #6468, fix #6148
2022-12-26 00:04:58 -08:00
4d876f0145 Support detecting safemode by ro.sys.safemode 2022-12-24 15:16:53 -08:00
bdfedea4e0 Close missing fd
Fix #6463
2022-12-24 15:16:27 -08:00
ea0e3a09ef Update install.md 2022-12-23 17:21:44 -08:00
dadae20960 Remove unused implementations 2022-12-23 17:20:39 -08:00
4ed34cd648 Eliminate unnecessarily copy on magiskinit
This patch reuses the abused /data tmpfs for magisktmp
2022-12-23 17:03:16 -08:00
0d38c94c9c scripts: fix root loss until reboot after Magisk addon.d-v2
- /system/bin/su was being removed in error from the live system so update remove_system_su to be aware of a running A/B OTA and generalize/simplify removal logic with relative paths to correctly run on the updated system slot
2022-12-23 16:36:44 -08:00
2a2a452bd4 CI uses java 17 2022-12-13 14:13:25 -08:00
13c2695e98 simplify denylist rm 2022-12-13 14:11:32 -08:00
3ff60ed49f app: l10n: Update Indonesian translations
* Added new strings based on the recent source.

Change-Id: I40d6e0374a0356d93c61acace7ab48c3649e85e8
2022-12-13 14:05:54 -08:00
bbb1786ec3 Fix typo PT translation
Fix typo PT translation
2022-12-13 14:05:40 -08:00
4bfd2dac54 Fix gender of ”install” as an adjective in French
In French, install as an adjective depends on the gender of its related noun. For instance, “Magisk installed” is translated “Magisk installé” (masculine form), whereas “Application installed” is translated “Application installée” (feminine form).
By using “Version installée”, “installed” is related to “version” which is feminine. For consistency of the GUI, I’m also changing "home_latest_version" string to ”Dernière version” instead of “Dernière”.
2022-12-13 14:05:24 -08:00
857c12372a Update French translations
Just a misspelling fix
2022-12-13 14:05:09 -08:00
33f5154269 Inject binaries into /system if sbin not accessible
Some Android 11+ devices have the /sbin partition but not accessible by the global shell (`PATH` doesn't contain `/sbin`). Not only custom ROMs but also some stock ROMs have the same behavior so I believe it is something we need to deal with.
Fix #6427, fix #4309, fix #5728, fix #3593
2022-12-13 13:54:55 -08:00
ed37ddd570 Stricter validation 2022-11-22 14:47:37 -08:00
cd5384f13e Fix crashes whenever a zygisk module has ver > 4 2022-11-22 14:47:37 -08:00
11b2ddbad8 Fix zygisk v4 ApiTable abi
Also refactor some code to let the compiler check the abi

Co-authored-by: topjohnwu <topjohnwu@gmail.com>
2022-11-22 11:49:31 -08:00
cf9957ce4d Properly detect SysUI appId
Fix #6322
2022-11-01 02:04:50 -07:00
44643ad7b3 Restrict pointer aliasing
Close #6354, close #6353
2022-10-31 16:35:33 -07:00
1e53a5555e Update AGP 2022-10-31 16:00:42 -07:00
616adc22e1 Support Linux < 3.6 2022-10-31 16:00:42 -07:00
916e373edb Update README.md to specify python version 3.8+
Current readme suggests python 3.6+
However, the file `build.py` on executing `build.py ndk` runs the command `shutil.copytree(src_dir, lib_dir, copy_function=cp, dirs_exist_ok=True)`
This command errors out on python 3.7, because the `dirs_exist_ok` parameter is new in Python 3.8 (https://docs.python.org/3/library/shutil.html#shutil.copytree)

So the README should suggest python 3.8+
2022-10-20 17:21:08 -07:00
021ae15395 Update German translation 2022-10-12 13:08:12 -07:00
52cf72002a Update resources load
addAssetPath supports apk and directory
2022-10-12 13:07:30 -07:00
68874bf571 Release new canary build 2022-10-11 13:33:08 -07:00
a468fd946d Fix #6314 2022-10-11 13:01:34 -07:00
e327565434 Release new canary build 2022-10-10 21:44:32 -07:00
c3b4678f6e Properly detect SysUI 2022-10-10 21:28:13 -07:00
978216eade local module: filter hidden dirs 2022-10-03 14:20:09 -07:00
44cfe94e4d Always cleanup init LD_PRELOAD hooks
Fix #6296
2022-10-03 08:26:33 -07:00
f9e82c9e8a Update Bengali translation 2022-09-26 23:11:00 -07:00
25b4b107d3 Create strings.xml
Added Malayalam translation
2022-09-26 23:10:48 -07:00
db651fa9ec Create strings.xml
Added Malayalam translation
2022-09-26 23:10:34 -07:00
23ad611566 Use sccache for rust build 2022-09-26 01:35:52 +02:00
095d821240 Don't use xopen in readlink 2022-09-25 16:35:28 -07:00
e23f23a8b7 Update AGP 2022-09-21 03:09:53 +02:00