2020-07-05 20:09:18 +02:00
|
|
|
# Reproducible Builds
|
|
|
|
|
2020-08-29 22:33:23 +02:00
|
|
|
Note: This does not work at this time
|
2020-07-05 20:09:18 +02:00
|
|
|
|
|
|
|
## Install Docker
|
|
|
|
|
|
|
|
Download and install [Docker](https://www.docker.com/).
|
|
|
|
|
|
|
|
## Check your Thorium app version and build timestamp
|
|
|
|
|
|
|
|
1. Open the Thorium app
|
|
|
|
2. Go to Settings
|
2020-07-05 20:12:43 +02:00
|
|
|
3. Check the app version listed under About 'Version' (e.g., 1.0.44), and record its value to be used later
|
2020-07-05 20:09:18 +02:00
|
|
|
4. Check the build timestamp under About 'Build Time' (e.g., 1593942384524), and record its value to be used later
|
|
|
|
|
|
|
|
## Download the App open-source code
|
|
|
|
|
|
|
|
1. Make sure you have `git` installed
|
|
|
|
2. Clone the Github repository
|
2020-07-05 20:12:43 +02:00
|
|
|
3. Checkout the Tag that corresponds to the version of your Thorium app (e.g., 1.0.44)
|
2020-07-05 20:09:18 +02:00
|
|
|
|
|
|
|
```shell
|
|
|
|
git clone https://github.com/sschueller/peertube-android ~/peertube-android
|
|
|
|
cd ~/peertube-android
|
2020-07-05 20:12:43 +02:00
|
|
|
git checkout v1.0.44
|
2020-07-05 20:09:18 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Build the project using Docker
|
|
|
|
|
|
|
|
1. Build a Docker Image with the required Android Tools
|
|
|
|
2. Build the App in the Docker Container while specifying the build timestamp that was recorded earlier (e.g., 1593942384524)
|
|
|
|
3. Copy the freshly-built APK
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cd ~/peertube-android
|
|
|
|
docker build -t thorium-builder .
|
2020-07-06 21:48:26 +02:00
|
|
|
docker run --rm -v ~/Private/peertube:/home/peertube -w /home/peertube thorium-builder gradle assembleRelease -PkeystorePassword=securePassword -PkeyAliasPassword=securePassword -PkeystoreFile=build.keystore -PbuildTimestamp=1593973044091
|
|
|
|
cp app/build/outputs/apk/release/app-release-unsigned.apk thorium-built.apk
|
2020-07-05 20:09:18 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Extract the Play Store APK from your phone
|
|
|
|
|
|
|
|
1. Make sure you have `adb` installed
|
|
|
|
2. Connect your phone to your computer
|
|
|
|
3. Extract the APK from the phone
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cd ~/peertube-android
|
2020-07-06 21:48:26 +02:00
|
|
|
adb shell pm path net.schueller.peertube
|
|
|
|
adb pull /data/app/net.schueller.peertube-mCeISw_AujlMBHyPfVhdSg==/base.apk thorium-store.apk
|
2020-07-05 20:09:18 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Compare the two files
|
|
|
|
|
|
|
|
1. Make sure you have `python` installed
|
|
|
|
2. Use the `apkdiff` script to compare the APKs
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cd ~/peertube-android
|
2020-07-06 21:48:26 +02:00
|
|
|
./apkdiff.py thorium-built.apk thorium-store.apk
|
2020-07-05 20:09:18 +02:00
|
|
|
```
|
|
|
|
|