#android

danie10@squeet.me

How to install and use Magisk modules on a rooted Android phone, Finding new modules might look a little different from now on

Bild/Foto
Magisk is, without a doubt, one of the best tools a rooted user can tap into when customizing any Android device. You can install modules to do just about anything you want systemlessly, which means they won’t permanently overwrite your system files. Once you uninstall them and reboot, you’re right back to stock. Certain module-related properties have changed in recent versions of Magisk, so follow the guide below to learn more about how to install and use it.

This official repo was built directly into the Magisk app to make installing and updating your modules quick and easy. However, starting with Magisk v24.0, developer John Wu has decided to remove it entirely from the app. If you previously relied only on the app for your module needs, you might be unsure of what to do now that the feature is missing.

Since the official Magisk repo is no longer accepting new module submissions, it could completely shut down at some point. However, the alternative Magisk repo is available, which will serve an unofficial replacement should that ever happen. New modules are constantly added to this repo, so it’s already a widely used source.

See https://www.androidpolice.com/how-to-install-and-use-magisk-modules/

#technology #android #magisk #rooted
#Blog, ##android, ##magisk, ##rooted, ##technology

danie10@squeet.me

Android 12 Custom ROM List: Unofficially update your Android smartphone if it appears on this list!

Bild/Foto
With the large number of unofficial builds of Android 12-based custom ROMs popping up, XDA Developers felt it would be a good idea to create an index of devices that have Android 12 ports available for them. Do note that these are unofficial builds and will very likely contain bugs. Please read the first few posts of each linked thread, so you know the current status of the build before flashing it on your phone.

See https://www.xda-developers.com/android-12-custom-rom/

#technology #android #customrom #updates
#Blog, ##android, ##customrom, ##mobile, ##technology, ##updates

tom@pod.interlin.nl

Welche Android-App könnte generell “nach Hause” telephonieren?

Um auf die Schnelle rauszufinden, welche app eines Android-Telephons erst einmal grundsätzlich die Möglichkeit hat über Wifi oder data nach Hause zu telefonieren, erstellt man sich am besten kurz eine Liste. Das geht recht einfach über den Package manager.

Von Deinem Linux-Terminal und einem verbundenen Telephon:
$ adb shell

Auf dem Telefon:
Berechtigung für Internet:
$ for package in $(pm list packages -3 | cut -f2 -d":"); do dumpsys package $package | grep “android.permission.INTERNET: granted=true” > /dev/null && echo $package done;

Berechtigung für mobile Daten:
$ for package in $(pm list packages | cut -f2 -d":"); do echo $package; pm dump $package | grep “Mobile network”; done;

Vermutlich wird diese Liste bei den meisten recht lang sein und mit “iptables” könnte man (auf einem Telephon mit root-Rechten),
dem Treiben nun ein Ende setzen.
Echt gut geeignet ist dafür auf dem Handy AFWall+ – https://f-droid.org/de/packages/dev.ukanth.ufirewall/

#android #android-pm #datenschutz #linux #firewall