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
2 changes: 1 addition & 1 deletion .github/workflows/pr_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: echo $GOOGLE_SERVICES_JSON > ./app/google-services.json

- name: Build debug APK
run: ./gradlew assembleDebug --stacktrace
run: ./gradlew assembleDebug --stacktrace --build-cache --parallel

- name: Run ktlint
run: ./gradlew ktlintCheck
Expand Down
7 changes: 6 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.nonTransitiveRClass=true

# improve build speed
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true