Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/android_deploy_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand All @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/android_deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testReportJob.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 9 additions & 1 deletion fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
9 changes: 7 additions & 2 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@



<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000189">
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000365276">

</testcase>


<testcase classname="fastlane.lanes" name="1: test" time="5.171044">
<testcase classname="fastlane.lanes" name="1: clean bundle" time="341.118560997">

</testcase>


<testcase classname="fastlane.lanes" name="2: upload_to_play_store" time="39.182463652">

</testcase>

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down