Modified MCPE Alpha 0.8.1 client with new stuff
This repository is used as a basis
Does not contain res and assets that are neccessary to build it(get them from the original apk yourself).
- Clone this repo
- Recursively clone MCPE-0.8.1 repo into
app/src/main/cpp(git clone https://github.com/ModifiedEight/Android-Classic app/src/main/cpp --recursive) - Use jadx(or similar tool) to get
resfolder from apk file(while the apk already containsresfolder, some of its content is packed intoresources.arsc) - Extract
assetsandlibminecraftpe.sofrom the original apk - move
assetsandresfolders toapp/src/main/ - Run
python app/src/main/cpp/tools/get_sound_data.py <path/to/libminecraftpe.so>and move the resultedpcm_data.cfile intoapp/src/main/cpp/modifiedeight/impl/- Make sure you extracted armv7 libminecraftpe.so and not x86 or else sound data will be incorrect!
- You should be able to build this project by using
./gradlew build - Alternatively you can open this project in android studio and build it there.