commit 660939f08db6d0111fce9019b33ecbcbc9dedb4f Author: Buduf Date: Tue Feb 11 10:41:44 2025 +0100 Initial commit diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..0ac9215 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,62 @@ +name: Build +on: + issue_comment: + types: [created] + +jobs: + build: + name: Build + if: ${{ !gitea.event.issue.pull_request && gitea.event.issue.number == 1 }} + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: 'zulu' + java-version: '11' + + - name: Install jq + run: apt update && apt install jq -y + + - name: Get youtube apk + run: | + wget "https://my.buduf.win/APK/youtube-$VERSION.apk" \ + --progress=dot:mega \ + -O input.apk + env: + VERSION: ${{ gitea.event.comment.body }} + + - name: Get revanced-cli + run: | + curl -s https://api.github.com/repos/ReVanced/revanced-cli/releases/latest | \ + jq --raw-output '.assets[0] | .browser_download_url' | \ + wget --progress=dot:mega -i - -O revanced-cli.jar + + - name: Get revanced-patches + run: | + curl -s https://api.github.com/repos/ReVanced/revanced-patches/releases/latest | \ + jq --raw-output '.assets[0] | .browser_download_url' | \ + wget --progress=dot -i - -O revanced-patches.rvp + + - name: Build youtube-revacned + run: | + java -jar revanced-cli.jar patch \ + --custom-aapt2-binary=lib/arm64-v8a/libaapt2.so \ + --keystore=youtube-revanced.keystore \ + -p=revanced-patches.rvp \ + -o=youtube-revanced.apk \ + input.apk + + - name: Create release + uses: akkuman/gitea-release-action@v1 + env: + VERSION: "v${{ gitea.event.comment.body }}" + with: + name: ${{ env.VERSION }} + tag_name: ${{ env.VERSION }} + files: |- + youtube-revanced.apk diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..485c7e8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +revanced-cli.jar +revanced-patches.rvp +input.apk +youtube-revanced.apk +youtube-revanced-temporary-files/ diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..0183f0b --- /dev/null +++ b/build.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# Generic script, the repo uses gitea actions workflow + +wget "$1" \ + --progress=dot:mega \ + -O input.apk + +curl -s https://api.github.com/repos/ReVanced/revanced-cli/releases/latest | \ + jq --raw-output '.assets[0] | .browser_download_url' | \ + wget --progress=dot:mega -i - -O revanced-cli.jar + +curl -s https://api.github.com/repos/ReVanced/revanced-patches/releases/latest | \ + jq --raw-output '.assets[0] | .browser_download_url' | \ + wget --progress=dot -i - -O revanced-patches.rvp + +java -jar revanced-cli.jar patch \ + --custom-aapt2-binary=lib/arm64-v8a/libaapt2.so \ + --keystore=youtube-revanced.keystore \ + -p=revanced-patches.rvp \ + -o=youtube-revanced.apk \ + input.apk diff --git a/lib/arm64-v8a/libaapt2.so b/lib/arm64-v8a/libaapt2.so new file mode 100755 index 0000000..a8d0f84 Binary files /dev/null and b/lib/arm64-v8a/libaapt2.so differ diff --git a/youtube-revanced.keystore b/youtube-revanced.keystore new file mode 100644 index 0000000..a3c9e31 Binary files /dev/null and b/youtube-revanced.keystore differ