6 Commits
Author SHA1 Message Date
DasMoorhuhn 07d45bb67e README.md aktualisiert 2026-09-07 15:36:21 +00:00
DasMoorhuhn 5b33c03184 README.md aktualisiert 2026-09-07 15:32:28 +00:00
DasMoorhuhn b5e5e3421d README.md aktualisiert 2026-09-07 15:30:32 +00:00
DasMoorhuhn dc41ff8ac3 README.md aktualisiert 2026-09-01 21:22:54 +00:00
DasMoorhuhn 619bd21db8 README.md aktualisiert 2026-07-10 14:49:10 +00:00
DasMoorhuhn 11922d7199 add docker build env 2026-07-09 19:24:05 +02:00
9 changed files with 48 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM alpine
RUN apk add --no-cache \
openjdk17-jre \
wget \
bash \
patch
RUN wget -O /usr/local/bin/apktool \
https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool && \
wget -O /usr/local/bin/apktool.jar \
https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_3.0.2.jar && \
chmod +x /usr/local/bin/apktool.jar && \
chmod +x /usr/local/bin/apktool
WORKDIR /data
CMD ["tail", "-f", "/dev/null"]
+20 -1
View File
@@ -7,6 +7,9 @@ Bejewled Classic (v3.8.1) has issues with newer high resolution screens, which r
## What's different
[v2026.7.19]
- Skip 24h timer for free plays
[v2026.7.7]
- Changed storage location from `/data/app/0/...` to `/storage/emulated/0/Android/media/com.ea.gp.bej3/` for exposing the savestates and stored settings
- Added new app version (can be either viewed in app info or ingame in the about menu)
@@ -19,7 +22,15 @@ Bejewled Classic (v3.8.1) has issues with newer high resolution screens, which r
### Download
[Download from releases]()
[Download from releases](https://git.pinguin-software.de/DasMoorhuhn/bejeweled-classic/releases)
Please be aware that you'll need to uninstall the original version before installing this modified version and deactivate auto updates for this app in the google play store. You'll loose your current progress and also the ability of using google play services like purchases and achievements because they aren't available for modified applications (technical reason is the application signature). Tho once you've installed this modified version, you can back up your savestate as you like :)
### Ads
If you want to get rid of those annoying ads, set your DNS to 86.54.11.13 (noads.joindns4.eu) in your phone settings.
Alternativly you can use https://github.com/pass-with-high-score/blockads-android
### DIY
@@ -57,3 +68,11 @@ Decompile the same APK to `./out_orig/` and do you chancges in `./out/`
sh generate_patch_diff.sh
```
You may want to add a different app version like `android:versionCode='18101' android:versionName='3.8.1_2026.7.7'` to the `AndroidManifest.xml` file, otherwise the version which will be displayed in app info will be `3.8.1`.
## Docker
The docker image contains all needed tools to decompile/compile an APK.
- Build the image: `docker compose build`
- Run the container: `docker compose up -d`
- Enter the container: `docker compose exec bejeweled-env bash`
+10
View File
@@ -0,0 +1,10 @@
services:
bejeweled-env:
container_name: bejeweled_env
image: bejeweled-env:1.0
stop_grace_period: "1s"
build:
context: .
dockerfile: Dockerfile
volumes:
- ./src:/data:rw
View File