diff --git a/.github/workflows/develop_PR_builder.yml b/.github/workflows/develop_PR_builder.yml index 58fc7c63d..33d22b83f 100644 --- a/.github/workflows/develop_PR_builder.yml +++ b/.github/workflows/develop_PR_builder.yml @@ -36,5 +36,8 @@ jobs: - name: Change gradlew permissions run: chmod +x ./gradlew + - name: Access Firebase Service + run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json + - name: Build debug APK run: ./gradlew assembleDebug --stacktrace diff --git a/app/build.gradle.kts b/app/build.gradle.kts index b96647164..6127a3c9d 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -4,6 +4,9 @@ plugins { hmh("application") hmh("compose") hmh("test") + alias(libs.plugins.google.services) + alias(libs.plugins.app.distribution) + alias(libs.plugins.crashlytics) } android { @@ -53,6 +56,8 @@ android { } dependencies { - + // Firebase + implementation(platform(libs.firebase)) + implementation(libs.bundles.firebase) }