From 0aad11b44dc6c8e35ffc3d49b15f0105ad66d4de Mon Sep 17 00:00:00 2001 From: KoalaSat Date: Wed, 13 Mar 2024 09:19:37 +0100 Subject: [PATCH] Remove blob dependencies --- .github/workflows/release.yml | 6 +++--- android/app/build.gradle | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 554638c..0435914 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,9 +84,9 @@ jobs: - name: Install torf-cli run: sudo pip3 install torf-cli - name: Create torrent using torf-cli - run: torf "nostros-${{ github.ref_name }}-universal.apk" -o "nostros-${{ github.ref_name }}-universal.torrent" -w "https://github.com/KoalaSat/nostros/releases/download/${{ github.ref_name }}/nostros-${{ github.ref_name }}-universal.apk" -s "torrent-webseed-creator" + run: torf "./nostros-${{ github.ref_name }}-universal.apk" -o "nostros-${{ github.ref_name }}-universal.torrent" -w "https://github.com/KoalaSat/nostros/releases/download/${{ github.ref_name }}/nostros-${{ github.ref_name }}-universal.apk" -s "torrent-webseed-creator" - name: Upload torrent file uses: actions/upload-artifact@v3 with: - name: Torrent - path: nostros-${{ github.ref_name }}-universal.torrent + name: nostros-${{ github.ref_name }}-universal.torrent + path: . diff --git a/android/app/build.gradle b/android/app/build.gradle index 4198a6a..61ec86f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -162,6 +162,13 @@ android { } } + + dependenciesInfo { + // Disables dependency metadata when building APKs. + includeInApk = false + // Disables dependency metadata when building Android App Bundles. + includeInBundle = false + } } dependencies {