Posts

Showing posts from June, 2020

[PDF] ARMv8 A64 Quick Reference

https://courses.cs.washington.edu/courses/cse469/18wi/Materials/arm64.pdf

How to fix apktool compile errors

Image
Well, there are many reasons why but I will show you most common errors. Note, i'm talking about general apk modding, not system apk/framework modding   Assets.dex issue "Class xxx has already been interned" and "Not a valid dex magic value" By default, apktool try to decompile dex from assets folder which would decompile to smali_assets on a root directory of decompiled apk, and compiled to assets.dex upon compiling This can cause compiling issues   Solution: To fix the problem, decompile APK again with the flag [code]--only-main-classes[/code] to only decompile on main classes in root (classes[0-9].dex) then you can compile without any problem   Note: Only for apktool 2.4.1 and up   You can try to delete .dex from assets folder or smali_assets/assets.dex but it may cause problems   If you are using APK Easy Tool 1.57 and above, you can enable the option "Only disassemble the main dex classes" under Options -> Apktool. Aga

List of modding related Github links

This is my collections of modding and reversing related Github links. Credits to anyone who found some links. More to come.   Note: Not all will be listed as I want to keep some secret to prevent abuse. Don't ask me about it Profiles: https://github.com/AndnixSH https://github.com/Octowolve https://github.com/kp7742 https://github.com/HoLLy-HaCKeR https://github.com/Razzile https://github.com/djkaty   Android: Android Mod Menu: https://github.com/Octowolve/Substrate-Template-With-Mod-Menu https://github.com/MrIkso/FloatingModMenu https://github.com/LGLTeam/Android-Mod-Menu https://github.com/joeyjurjens/Android-Hooking-Template   Hooking https://github.com/jbro129/Unity-Substrate-Hook-Android https://github.com/Djngo/Hooking-and-Patching-android-template https://github.com/GToad/Android_Inline_Hook_ARM64 https://github.com/Rprop/And64InlineHook https://github.com/LGLTeam/And64InlineHook https://github.com/jbro129/PackageHook   G