From b89d1ae9904e57e23e1ae18e09f1ebf294e5b87b Mon Sep 17 00:00:00 2001 From: Sergiotarxz Date: Mon, 5 Aug 2024 23:25:35 +0200 Subject: [PATCH] Improving readme. --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/README.md b/README.md index cd6e212..dc57790 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,44 @@ # BedrockStation +## Compile instructions + +Copy app/build.gradle.example to app/build.gradle. + +Remove: + +``` + signingConfigs { + release { + storeFile file("") + storePassword "" + keyAlias "" + keyPassword "" + } + } +``` + +and + +``` + signingConfig signingConfigs.release +``` + +From that file. + +Configure correctly the android sdk. + +Install gradle-8.7 or later. + +Run: + +``` +gradle assemble +``` + +Test the demo build installing: + +`./app/build/outputs/apk/free/debug/app-free-debug.apk` + +And the Pro build installing: + +`./app/build/outputs/apk/pro/debug/app-pro-debug.apk`