Ensure R8 keeps methods called externally by Shizuku (#3676)

* Ensure R8 keeps methods called externally by Shizuku

* Changelog
This commit is contained in:
NGB-Was-Taken
2026-08-02 17:38:49 +05:45
committed by GitHub
parent 1d8a2b05dd
commit d7f3ceef5c
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -14,6 +14,9 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
### Added ### Added
- Add Category filtering for the Updates tab ([@MajorTanya](https://github.com/MajorTanya)) ([#3589](https://github.com/mihonapp/mihon/pull/3589)) - Add Category filtering for the Updates tab ([@MajorTanya](https://github.com/MajorTanya)) ([#3589](https://github.com/mihonapp/mihon/pull/3589))
### Fixed
- Fixed extension installation with shizuku installer ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#3676](https://github.com/mihonapp/mihon/pull/3676))
## [v0.20.2] - 2026-08-01 ## [v0.20.2] - 2026-08-01
### Added ### Added
- Support resumable image downloads if supported by source ([@xMohnad](https://github.com/xMohnad)) ([#3167](https://github.com/mihonapp/mihon/pull/3167)) - Support resumable image downloads if supported by source ([@xMohnad](https://github.com/xMohnad)) ([#3167](https://github.com/mihonapp/mihon/pull/3167))
+6
View File
@@ -89,3 +89,9 @@
# KotlinX Datetime # KotlinX Datetime
-keep,allowoptimization class kotlinx.datetime.** { public protected *; } -keep,allowoptimization class kotlinx.datetime.** { public protected *; }
# Methods called by Shizuku only
-keepclassmembers class mihon.app.shizuku.ShellInterface {
public <init>();
public void destroy();
}