Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martenrebane committed Sep 25, 2023
1 parent 9411c5a commit b97787a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: clean --no-daemon fetchAndPackageDefaultConfiguration -PappVersionName=${{ env.APP_VERSION_NAME }}.${{ env.BUILD_NUMBER }} assemble --debug
arguments: clean --no-daemon fetchAndPackageDefaultConfiguration -PappVersionName=${{ env.APP_VERSION_NAME }}.${{ env.BUILD_NUMBER }} assemble --debug -PskipGoogleServices

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
Expand Down
10 changes: 8 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
if (project.hasProperty('skipGoogleServices')) {
project.logger.lifecycle('Skipping Google Services')
} else {
project.logger.lifecycle('Including Google Services')
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
}


android {
namespace 'ee.ria.DigiDoc'
Expand Down

0 comments on commit b97787a

Please sign in to comment.