build: target Android 16 / API 36
All checks were successful
Android build / build (push) Successful in 12m16s

This commit is contained in:
Hermes
2026-08-31 12:17:46 -05:00
parent aae81c202e
commit dcdf69d02a
3 changed files with 6 additions and 6 deletions

View File

@@ -50,8 +50,8 @@ jobs:
set -o pipefail set -o pipefail
sdkmanager \ sdkmanager \
"platform-tools" \ "platform-tools" \
"platforms;android-35" \ "platforms;android-36" \
"build-tools;35.0.0" "build-tools;36.0.0"
- name: Prepare optional release signing - name: Prepare optional release signing
if: github.event_name == 'release' if: github.event_name == 'release'

View File

@@ -3,8 +3,8 @@ set -Eeuo pipefail
APP_NAME="e-SUN" APP_NAME="e-SUN"
MODULE="app" MODULE="app"
API_LEVEL="35" API_LEVEL="36"
BUILD_TOOLS_VERSION="35.0.0" BUILD_TOOLS_VERSION="36.0.0"
DIST_DIR="dist" DIST_DIR="dist"
COMMIT_MSG_FILE="commit-message.txt" COMMIT_MSG_FILE="commit-message.txt"

View File

@@ -20,12 +20,12 @@ val hasReleaseSigning = listOf(
android { android {
namespace = "solutions.tretter.esunandroid" namespace = "solutions.tretter.esunandroid"
compileSdk = 35 compileSdk = 36
defaultConfig { defaultConfig {
applicationId = "solutions.tretter.esunandroid" applicationId = "solutions.tretter.esunandroid"
minSdk = 26 minSdk = 26
targetSdk = 35 targetSdk = 36
versionCode = 19 versionCode = 19
versionName = "19" versionName = "19"