55 lines
1.4 KiB
Markdown
55 lines
1.4 KiB
Markdown
# BedrockStation
|
|
|
|
Connect from PlayStation's Minecraft to third-party servers.
|
|
|
|
Copyright (C) 2024 Sergio Iglesias
|
|
|
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
## 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`
|