Improving readme.

This commit is contained in:
Sergiotarxz 2024-08-05 23:25:35 +02:00
parent 598fa55800
commit b89d1ae990
1 changed files with 42 additions and 0 deletions

View File

@ -1,2 +1,44 @@
# BedrockStation
## Compile instructions
Copy app/build.gradle.example to app/build.gradle.
Remove:
```
signingConfigs {
release {
storeFile file("<file>")
storePassword "<store pass>"
keyAlias "<alias>"
keyPassword "<pass>"
}
}
```
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`