Board Archive
154 subscribers
11 photos
3 videos
197 files
42 links
The very collection of @GalaxyA14user's interests. Random yet useful to me.
Download Telegram
rtlwifi-enabler_1.0.zip
19.1 KB
rtlwifi fw (vendor) - A Magisk module to use with ExynosUnbound to enable rtl8xxxu detection
👍2
git clone https://android.googlesource.com/platform/system/tools/mkbootimg

python3 mkbootimg/mkbootimg.py --boot_img init_boot.img

Keep the output somewhere safe

mkdir lmao && cd lmao && cat ../ramdisk | cpio --extract

Now to pack ramdisk back

find . | cpio --quiet -o -H newc -R root:root | lz4 -9cl > ../ramdisk-new

Now to pack init_boot.img back, use the output which you kept safe

python3 mkbootimg/mkbootimg.py --header_version 4 --output "init_boot-new.img" --ramdisk "ramdisk-new" --os_version 14.0.0 --os_patch_level 2025-01
🌭2👍1ðŸĪĄ1ðŸĪĢ1ðŸ—ŋ1
com.BrotherBoard.black_1.0.apk
15.2 KB
black screen app
ðŸ‘ŧ6ðŸĪ”2🖕1
samsung_modern_param_snapshots.zip
3.5 MB
Param images
Kanged from Galaxy S22 Ultra
👍1
BB_2.0.apk
51.4 KB
BetterBattery v2.0 - My very extremely accurate battery level monitor. Powered by nothing but Android Java and pure math.

What's new:
- Added speed meters for mah and percentage
- Clearfield some stuffs aswell
- Better UI at the beginning
- Renamed version to 2.0
👍5
Forwarded from ABIKitchen
ABIK-v1.0.2.apk
4.9 MB
Unpack and Repack Android Boot Images

Supported Boot Image Types:
-> init_boot
-> boot
-> recovery
-> vendor_boot (v4 is also supported)

Supported Ramdisk Compression:
-> LZMA
-> GZIP
-> LZ4

Requirements: Android 11+
👍2
bootanimation
20.3 KB
AOSP bootanimation binary (Android 14)
Relies on /system/media/bootanimation.zip and /system/lib64/libbootanimation.so
libbootanimation.so
137.8 KB
Dependency for AOSP bootanimation binary
Located in /system/lib64/
bootanimation_oneui
52 KB
OneUI bootanimation binary (Android 14)
Relies on /system/media/bootsamsung.qmg and /system/media/bootsamsungloop.qmg
anim
6.7 KB
anim - bootanimation zip player
Works on all systems, including OneUI and AOSP
Requires libbootanimation.so in same directory (file)

usage: ./anim <zip> <time>
👍2🖕1
fbpng
122.1 KB
fbpng v1.0 - I made a simple png file displayer that directly writes images to framebuffer. Apparently it was more complicated than i thought. Of course written in C.

usage: ./fbpng <img.png>
ðŸ”Ĩ2🖕1
Does something feel off? (lmao)
Naah bro something's off fr

I learned how to hook SystemUI process and snipe out a specific TextView and modify it as I like! What a great utility Frida is!
😁5👌1ðŸ—ŋ1
Changing battery text from command line by attaching SystemUI process with Frida (Preview here)

Java.perform(function() {
const T = 'com.android.systemui.statusbar.phone.SwitchableDoubleShadowTextView';
const I = 0x7f0a014c;

Java.choose(T, {
onMatch: function(tv) {
if (tv.getId() === I) {
Java.scheduleOnMainThread(function() {
console.log("changing");
tv.setText(Java.use('java.lang.String').$new("hi"));
});
}
},
onComplete: function() {}
});
});

sudo frida -D local -l file.js -n "com.android.systemui"
👍3🖕2