PDOS PdAndro
Status: Beta
Brought to you by:
kerravon86
| File | Date | Author | Commit |
|---|---|---|---|
| app | 2026-04-15 |
|
[5921f6] Initial commit |
| doc | 2026-04-15 |
|
[5921f6] Initial commit |
| gradle | 2026-04-15 |
|
[5921f6] Initial commit |
| NOCOPYRIGHT.txt | 2026-04-15 |
|
[5921f6] Initial commit |
| README.md | 2026-04-15 |
|
[5921f6] Initial commit |
| build.gradle | 2026-04-15 |
|
[5921f6] Initial commit |
| gradle.properties | 2026-04-15 |
|
[5921f6] Initial commit |
| gradlew | 2026-04-15 |
|
[5921f6] Initial commit |
| gradlew.bat | 2026-04-15 |
|
[5921f6] Initial commit |
| settings.gradle | 2026-04-15 |
|
[5921f6] Initial commit |
The source code is Public Domain except the gradle directory and gradlew.*
This app will create 2 files in your "Download/" folder (hi.txt and pcomm.arm)

Script to modify an Android APK under Debian :
echo sudo apt install zip apksigner zipalign
echo download bcprov-*.jar
firefox https://www.bouncycastle.org/download/bouncy-castle-java/
cp app-release.apk original.zip
rm -rf ./app
unzip original.zip -d app
echo assume that the new files are in the ./new directory
cp -r ./new/* ./app/
(cd app && zip --exclude resources.arsc -r ../app.zip * && zip -0 ../app.zip resources.arsc)
mv app.zip app_tmp.apk
if [ ! -f cert.bks ]; then
keytool -genkey -keyalg RSA -alias cert -keystore cert.bks -storepass 12345678 -validity 36000 -storetype BKS -provider org.bouncycastle.jce.provider.BouncyCastleProvider -providerpath ~/Downloads/bcprov-jdk18on-1.78.1.jar
fi
rm -f app.apk
zipalign -p 4 app_tmp.apk app.apk
echo PASSWORD is 12345678
apksigner sign --min-sdk-version 16 --ks cert.bks app.apk
apksigner verify app.apk