From c8184b041098b571c42b0044291ba544ca9e14ca Mon Sep 17 00:00:00 2001 From: tojik_proof_93 Date: Tue, 14 Apr 2026 11:06:24 +0500 Subject: [PATCH 1/3] fixed --- .github/dependabot.yml | 25 ++++++++++++++++ .github/workflows/build.yml | 42 +++++++++++++++++++++++++++ .github/workflows/update_release.yml | 37 +++++++++++++++++++++++ .idea/.gitignore | 3 -- .idea/.name | 1 - .idea/compiler.xml | 6 ---- .idea/deploymentTargetDropDown.xml | 10 ------- .idea/deploymentTargetSelector.xml | 10 ------- .idea/gradle.xml | 19 ------------ .idea/migrations.xml | 10 ------- .idea/misc.xml | Bin 409 -> 0 bytes .idea/runConfigurations.xml | 17 ----------- .idea/vcs.xml | 6 ---- 13 files changed, 104 insertions(+), 82 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/update_release.yml delete mode 100644 .idea/.gitignore delete mode 100644 .idea/.name delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/deploymentTargetDropDown.xml delete mode 100644 .idea/deploymentTargetSelector.xml delete mode 100644 .idea/gradle.xml delete mode 100644 .idea/migrations.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/runConfigurations.xml delete mode 100644 .idea/vcs.xml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..7b163d07 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,25 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +enable-beta-ecosystems: true +updates: + - package-ecosystem: "gradle" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" + commit-message: + # Prefix all commit messages with "Changed: " + prefix: "Changed" + rebase-strategy: "disabled" + + - package-ecosystem: "github-actions" + directory: "/" # Location of package manifests + schedule: + interval: "daily" + commit-message: + # Prefix all commit messages with "Changed: " + prefix: "Changed" + rebase-strategy: "disabled" \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..e5f9ef2a --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,42 @@ +name: AntiSplit-M Build +permissions: + contents: write + +on: + pull_request: + branches: + - master + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Set up JDK 17 + uses: actions/setup-java@v5 + with: + distribution: 'temurin' + java-version: '17' + + - name: Make gradlew executable + run: chmod +x ./gradlew + + - name: Build APK + run: ./gradlew assembleDebug --warning-mode all + + - name: Upload Gradle Problem Report + uses: actions/upload-artifact@v6 + with: + name: gradle-problem-report-${{ matrix.build_type }}-${{ github.run_id }} + path: build/reports/problems/ + if-no-files-found: warn + + - name: Upload APK + uses: actions/upload-artifact@v6 + with: + name: AntiSplit-M-apk-debug-${{ github.run_id }} + path: app/build/outputs/apk/debug/app-debug.apk \ No newline at end of file diff --git a/.github/workflows/update_release.yml b/.github/workflows/update_release.yml new file mode 100644 index 00000000..e0219746 --- /dev/null +++ b/.github/workflows/update_release.yml @@ -0,0 +1,37 @@ +name: Build & Publish APK (Debug) + +on: + push: + tags: + - '*' + +jobs: + build: + permissions: + contents: write + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Set up JDK 17 + uses: actions/setup-java@v5 + with: + java-version: 17 + distribution: temurin + + - name: Make Gradle executable + run: chmod +x ./gradlew + + - name: Build Debug APK + run: ./gradlew assembleDebug + + - name: Create GitHub Release + uses: softprops/action-gh-release@v3 + if: github.ref_type == 'tag' + with: + generate_release_notes: true + prerelease: false + files: | + app/build/outputs/apk/debug/app-debug.apk \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 26d33521..00000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index df710e3b..00000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -AntiSplit M \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index b589d56e..00000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml deleted file mode 100644 index 0c0c3383..00000000 --- a/.idea/deploymentTargetDropDown.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml deleted file mode 100644 index b268ef36..00000000 --- a/.idea/deploymentTargetSelector.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml deleted file mode 100644 index cb865f69..00000000 --- a/.idea/gradle.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/migrations.xml b/.idea/migrations.xml deleted file mode 100644 index f8051a6f..00000000 --- a/.idea/migrations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index b7b9c5a0c9f0456bd436017d87c6601009cb89cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 NcmZQz7zKke1ONe<00961 diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 16660f1d..00000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1ddf..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 4a68fc871a85c6fc2cb6f712af84ecb3fadc02e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 06:07:13 +0000 Subject: [PATCH 2/3] Changed: Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5f9ef2a..be964b42 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,14 +29,14 @@ jobs: run: ./gradlew assembleDebug --warning-mode all - name: Upload Gradle Problem Report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: gradle-problem-report-${{ matrix.build_type }}-${{ github.run_id }} path: build/reports/problems/ if-no-files-found: warn - name: Upload APK - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: AntiSplit-M-apk-debug-${{ github.run_id }} path: app/build/outputs/apk/debug/app-debug.apk \ No newline at end of file From 16da8976d7b94c1744e2ba72acbbdee36b2e3603 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 15:36:47 +0000 Subject: [PATCH 3/3] Changed: Bump com.android.application from 9.0.0-rc03 to 9.3.0-alpha05 Bumps com.android.application from 9.0.0-rc03 to 9.3.0-alpha05. --- updated-dependencies: - dependency-name: com.android.application dependency-version: 9.3.0-alpha05 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index d2e01075..e2683329 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "9.0.0-rc03" apply false + id("com.android.application") version "9.3.0-alpha05" apply false }