Skip to content
Merged
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
36 changes: 36 additions & 0 deletions .github/workflows/dependency-submission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Dependency Submission

on:
push:
branches: [ "main" ]
paths: [ "**/libs.versions.toml" ]
pull_request:
branches: [ "main" ]
paths: [ "**/libs.versions.toml" ]

permissions:
contents: write

jobs:
submit:
name: Submit
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'jetbrains'
java-version: 21
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Submit dependency graph
uses: gradle/actions/dependency-submission@v4
with:
build-scan-publish: true
build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use"
build-scan-terms-of-use-agree: "yes"
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.java.installations.auto-detect=true
org.gradle.java.installations.auto-download=false

android.useAndroidX=true
android.nonTransitiveRClass=true

kapt.include.compile.classpath=false
kotlin.code.style=official
2 changes: 2 additions & 0 deletions gradle/gradle-daemon-jvm.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
toolchainVendor=JETBRAINS
toolchainVersion=21