Skip to content

Commit

Permalink
chore: Clean up gradle.properties
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Niedermann <[email protected]>
  • Loading branch information
stefan-niedermann committed Jan 19, 2024
1 parent 53c5d5b commit d244d8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
run: bash ./gradlew lintDebug --stacktrace
run: bash ./gradlew lintDebug --stacktrace --no-configuration-cache

test:
name: Unit tests
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Unit tests
run: bash ./gradlew test --stacktrace
run: bash ./gradlew test --stacktrace --no-configuration-cache

apk:
name: Generate APK
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Build debug APK
run: bash ./gradlew assembleDev
run: bash ./gradlew assembleDev --no-configuration-cache
- name: Upload APK
uses: actions/upload-artifact@v4
with:
Expand Down
18 changes: 2 additions & 16 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
org.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8
org.gradle.configuration-cache=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx4096m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

0 comments on commit d244d8a

Please sign in to comment.