App Manager | DEBUG
1.44K subscribers
101 photos
2 videos
2.05K files
1.51K links
Download Telegram
AM Debug v4.0.0-beta01 Run#2735

UITracker Fix freezing issues in some devices

Some devices, such as Samsung, issue a lot of accessibility events, thereby,
causing lags and freezes. This is fixed by setting a 100 ms timeout. Also, most
of these accessibility events are fired from the UI Tracker window itself due to
broken/bad configuration of the accessibility service. A workaround is added by
ignoring all the events fired from the window.

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
App Manager | DEBUG
AM Debug v4.0.0-beta01 Run#2730 Settings Add option to use system fonts Modern Android OS allows the user to customise fonts via the “Wallpaper & style” app. However, material design uses a fixed sans-serif font instead of this font, thus, breaking overall…
It looks like some users mistook it for custom font options offered by some vendors such as Samsung. It is a customization over AOSP, and this setting does not apply since the font is already set for the material themes.
AM Debug v4.0.0-beta01 Run#2737

LogViewer Address a rare crash caused by unknown log level

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v3.1.7 Run#2738

fastlane Prepare for v3.1.7

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v4.0.0-beta01 Run#2739

BatchOps Add option to export app list as CSV and JSON

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v4.0.0-beta01 Run#2741

AppInfo Display detailed installer info

An info button is added next to the installer which display the installer, the
actual installer (AKA initiator), and the APK source (originator). Clicking on
each item opens the corresponding App Details page. This also fixes displaying
the installer app for some devices.

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v4.0.0-beta01 Run#2742

AppDetails Display blocking method in the components tabs

Blocking method is displayed in short form under the toggle button.

IFW+Dis = The component is blocked using both IFW and disable
IFW = The component is blocked using IFW
Dis = The component is disabled.

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v4.0.0-beta01 Run#2743

AppDetails Display blocking method under the toggle button in services tab

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v4.0.0-beta01 Run#2744

AppDetails Fix applying IFW method in the components tabs

Fixed applying IFW rules if the previous rules were “IFW+Disable” or “Disable”

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
AM Debug v4.0.0-beta01 Run#2745

Install Incorporate the latest features

- Properly handle the originating URI extra supplied by third-party apps via
Intent.EXTRA_ORIGINATING_URI
- Set originating package in Android 7 and later. The originating package is
automatically determined from the Intent sent from the third-party apps.
Proper security measures have been taken to ensure no spoofing is done.
- In Android 13 onwards, package source is set to PACKAGE_SOURCE_OTHER by
default to prevent the system from applying various accessibility restrictions
to the app. However, PACKAGE_SOURCE_STORE is set by default if the originating
package is one of the supported app stores. At present, the supported app
stores are: Aurora Store, Droid-ify, F-Droid, F-Droid Basic, F-Droid Classic
and Neo Store. It is up to the developers to ensure that they send the APK
installation requests in a proper way, that is, by utilizing features such as
startActivityForResult whenever possible.
- In Android 12 onwards, if an app is being installed in the foreground, App
Manager will try to accelerate the installation process by delaying various
post-installation tasks carried out by the installer.

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>