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 app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ plugins {

android {
namespace = "see.day.app"
compileSdk = 35
compileSdk = 36
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check SDK version references in the project
echo "=== Checking SDK version references ==="
rg "compileSdk|targetSdk|minSdk" --type=kotlin -g "*.gradle.kts" -n

echo -e "\n=== Checking app/build.gradle.kts for full context ==="
fd "build.gradle.kts" -x cat -n {}

Repository: Record-Management/Android

Length of output: 11957


🌐 Web query:

Android SDK 36 API level official release date stable version 2025 2026

💡 Result:

  • API level 36 corresponds to Android 16 (“Baklava”). (android-developers.googleblog.com)
  • Android SDK Platform (API 36) became “stable / no longer in preview” in March 2025 (when Android 16 reached Platform Stability). (developer.android.com)
  • Android 16 (API 36) final/stable OS release for Pixel was confirmed for June 10, 2025 (this is the public stable rollout date, later than Platform Stability). (androidpolice.com)

Citations:


compileSdk와 targetSdk의 불일치 확인 필요

Android SDK 36은 2025년 3월에 안정 버전으로 출시되어 현재 프로덕션 환경에서 사용 가능한 상태입니다. 그러나 현재 설정에서 compileSdk = 36인 반면 targetSdk = 35로 설정되어 있어 버전 간 불일치가 발생하고 있습니다. 일반적으로 compileSdk와 targetSdk는 동일하거나 매우 가깝게 유지하는 것이 권장되므로, targetSdk도 35에서 36으로 업데이트하여 일관성을 맞추는 것을 고려하세요.

🤖 Prompt for AI Agents
In `@app/build.gradle.kts` at line 11, The project sets compileSdk = 36 while
targetSdk remains 35; update the targetSdk to 36 to keep SDK versions
consistent. Locate the targetSdk definition (e.g., targetSdk in
android.defaultConfig or a top-level targetSdk variable) and change its value
from 35 to 36, then rebuild to ensure there are no compatibility warnings.


defaultConfig {
applicationId = "see.day.app"
minSdk = 28
targetSdk = 35
versionCode = 3
versionName = "1.0.2"
versionCode = 4
versionName = "1.0.3"
}

fun getApiKey(propertyKey: String): String {
Expand Down
18 changes: 18 additions & 0 deletions releaseNote.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
씨드데이 1.0.3 릴리즈 노트
=================
- 홈 화면 튜토리얼 추가
- 시간 지정 습관 알림 추가
- z플립에서 홈 화면 진척도 UI가 늘어나던 문제 수정

개발자 노트
---
홈 화면 튜토리얼 추가
https://github.com/Record-Management/Android/pull/189

시간 지정 습관 알림 추가
https://github.com/Record-Management/Android/pull/190

z플립에서 홈 화면 진척도 UI가 늘어나던 문제 수정
https://github.com/Record-Management/Android/pull/191


씨드데이 1.0.2 릴리즈 노트
=================
- 홈 화면 날짜 변경 바텀시트로 전환
Expand Down