Skip to content
Open
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: 6 additions & 0 deletions codemagic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ scripts:
name: "Get RIA DigiDoc version"
script: |
echo "APP_VERSION_NAME=$(sed -n 's/^versionName = "\(.*\)"/\1/p' gradle/libs.versions.toml)" >> $CM_ENV
- &install_android_sdk_37
name: "Install Android SDK 37"
script: |
$ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager "platforms;android-37.0"
- &get_google_services_json
name: "Get Google Services configuration"
script: |
Expand Down Expand Up @@ -70,6 +74,7 @@ workflows:
- *set_android_sdk_location
- *get_app_version
- *get_google_services_json
- *install_android_sdk_37
- name: "Setup debug keystore"
script: |
DEBUG_KEYSTORE_PATH="app/src/main/assets/keystore/debug.keystore"
Expand Down Expand Up @@ -230,6 +235,7 @@ workflows:
- *set_android_sdk_location
- *get_app_version
- *get_google_services_json
- *install_android_sdk_37
- name: "Setup debug keystore for tests"
script: |
DEBUG_KEYSTORE_PATH="app/src/main/assets/keystore/debug.keystore"
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
compileSdkVersion = "36"
compileSdkVersion = "37"
minSdkVersion = "33"
targetSdkVersion = "36"
targetSdkVersion = "37"
versionCode = "74" # Updated via CodeMagic pipeline.
versionName = "3.0.5"
versionName = "3.1.0"

agp = "8.13.0"
algp = "8.13.0"
Expand Down
Loading