Skip to content

Commit 5aa0b27

Browse files
author
Debashish Kundu
committed
Merge branch 'refs/heads/main' into ktor
2 parents 5b9e0c9 + 05b2415 commit 5aa0b27

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build_apk.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
path: app/build/reports/tests/testDebugUnitTest/
4242

4343
- name: Build Debug APK
44-
run: ./gradlew assembleDebug
44+
# adding '-x validateSigningDebug' as it fails the CI.
45+
# TODO: To be removed for actual template use
46+
run: ./gradlew assembleDebug -x validateSigningDebug
4547

4648
- name: Upload APK
4749
uses: actions/upload-artifact@v4

gradle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ kotlin.code.style=official
2020
# Enables namespacing of each library's R class so that its R class includes only the
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
23-
android.nonTransitiveRClass=true
24-
android.newDsl=false
23+
android.nonTransitiveRClass=true

0 commit comments

Comments
 (0)