diff --git a/.github/workflows/android_deploy_beta.yml b/.github/workflows/android_deploy_beta.yml index 961cee2d..7a61c7ee 100644 --- a/.github/workflows/android_deploy_beta.yml +++ b/.github/workflows/android_deploy_beta.yml @@ -24,7 +24,7 @@ jobs: ruby-version: '3.3' - name: Cache Ruby - Bundler - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} @@ -39,13 +39,13 @@ jobs: cache: gradle - name: Cache Gradle - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.gradle/caches/ key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }} - name: Cache Gradle Wrapper - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.gradle/wrapper/ key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }} diff --git a/.github/workflows/android_deploy_prod.yml b/.github/workflows/android_deploy_prod.yml index 5f7592a4..602dc813 100644 --- a/.github/workflows/android_deploy_prod.yml +++ b/.github/workflows/android_deploy_prod.yml @@ -24,7 +24,7 @@ jobs: ruby-version: '3.3' - name: Cache Ruby - Bundler - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} @@ -39,13 +39,13 @@ jobs: cache: gradle - name: Cache Gradle - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.gradle/caches/ key: cache-clean-gradle-${{ matrix.os }}-${{ matrix.jdk }} - name: Cache Gradle Wrapper - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.gradle/wrapper/ key: cache-clean-wrapper-${{ matrix.os }}-${{ matrix.jdk }} diff --git a/.github/workflows/testReportJob.yml b/.github/workflows/testReportJob.yml index 0f9b710e..14f00461 100644 --- a/.github/workflows/testReportJob.yml +++ b/.github/workflows/testReportJob.yml @@ -31,7 +31,7 @@ jobs: uses: gradle/wrapper-validation-action@v1 - name: Cache Gradle - uses: actions/cache@v3.0.2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches diff --git a/fastlane/README.md b/fastlane/README.md index 7ec1207f..ab9120a4 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -23,13 +23,21 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do Runs all the tests +### android crashlytics + +```sh +[bundle exec] fastlane android crashlytics +``` + +Submit a new Beta Build to Crashlytics Beta + ### android beta ```sh [bundle exec] fastlane android beta ``` -Submit a new Beta Build to Crashlytics Beta +Deploy a beta version to the Google Play ### android deploy diff --git a/fastlane/report.xml b/fastlane/report.xml index 86f133fd..ea25d2ad 100644 --- a/fastlane/report.xml +++ b/fastlane/report.xml @@ -5,12 +5,17 @@ - + - + + + + + + diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f885ade4..3467fa58 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,8 +7,8 @@ androidTools = "31.12.2" minSdk = "28" targetSdk = "36" compileSdk = "36" -versionName = "1.18" -versionCode = "18" +versionName = "1.19" +versionCode = "19" ktx = "1.17.0" material = "1.12.0"