Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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@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@v7
with:
name: AntiSplit-M-apk-debug-${{ github.run_id }}
path: app/build/outputs/apk/debug/app-debug.apk
37 changes: 37 additions & 0 deletions .github/workflows/update_release.yml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/compiler.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/deploymentTargetDropDown.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/deploymentTargetSelector.xml

This file was deleted.

19 changes: 0 additions & 19 deletions .idea/gradle.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/migrations.xml

This file was deleted.

Binary file removed .idea/misc.xml
Binary file not shown.
17 changes: 0 additions & 17 deletions .idea/runConfigurations.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
viewBinding = false
}
dependencies {
implementation("com.google.android.material:material:1.12.0")
implementation("com.google.android.material:material:1.14.0")
implementation(files("libs/APKEditor.jar"))
}
dependenciesInfo {
Expand Down