Since you're about to unpack and repack the apk to uncensor the game fully I thought I'd provide direct patches to launch the game on those platforms immediately in debug mode (although I really love
felixthetrap's discovery on how to manually activate it).
Replace the contents of the lib/ with the one in the attached lib.zip. This will enable debug mode by default.
I tested and verified this on android x86 and android ARM32. I am unable to test this on ARM64/AArch64 unfortunately but I am very confident it works. You can find a debugSigned APK here:
You must be registered to see the links
Anyone with an ARM64 device feel free to test it if possible.
Shisaye
This is what I did:
Decompile ("unzip") apk:
apktool d --no-res --no-src twohorns-android.apk
Output:
Code:
I: Using Apktool 2.4.1 on twohorns-android.apk
I: Copying raw resources...
I: Copying raw classes.dex file...
I: Copying assets and libs...
I: Copying unknown files...
I: Copying original files...
Then replace libs (and in your case /assets/*) with new patched files
Build new apk:
apktool b twohorns-android
Output:
Code:
I: Using Apktool 2.4.1
I: Copying twohorns-android classes.dex file...
I: Checking whether resources has changed...
I: Copying raw resources...
I: Copying libs... (/lib)
I: Building apk file...
I: Copying unknown files/dir...
I: Built apk...
align and sign apk:
cd twohorns-android\dist
java -jar uber-apk-signer-1.2.1.jar --apks .
(uber-apk-signer available
You must be registered to see the links
)
Output:
Code:
source:
D:\Games\twohorns\android\twohorns-android\dist
zipalign location: BUILT_IN
C:\Users\l8rdude\AppData\Local\Temp\uapksigner-6152119150671608542\win-zipalign_29_0_2.exe33532341370783229.tmp
keystore:
[0] 161a0018 C:\Users\l8rdude\AppData\Local\Temp\temp_7421543200000936082_debug.keystore (DEBUG_EMBEDDED)
01. twohorns-android.apk
SIGN
file: D:\Games\twohorns\android\twohorns-android\dist\twohorns-android.apk (216.54 MiB)
checksum: f33411f0c40885d947a090d9ae12524082c08703bbbff0a0cdff61dfe3bc10ad (sha256)
- zipalign success
- sign success
VERIFY
file: D:\Games\twohorns\android\twohorns-android\dist\twohorns-android-aligned-debugSigned.apk (216.82 MiB)
checksum: bee260754bfb5381d587ea94071446f2132b042aca3121d95093f61cec2c894d (sha256)
- zipalign verified
- signature verified [v1, v2, v3]
Subject: CN=Android Debug, OU=Android, O=US, L=US, ST=US, C=US
SHA256: 1e08a903aef9c3a721510b64ec764d01d3d094eb954161b62544ea8f187b5953 / SHA256withRSA
Expires: Thu Mar 10 21:10:05 CET 2044
Cheers,