Skip to content

Commit 54c532c

Browse files
committed
Add release notes, set Android Compile SDK to 36
Also use version catalog for sentry SDK
1 parent 43ee8c5 commit 54c532c

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

android/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
- Bump SentrySDK to 8.17.0
11+
- Fix crash when title is null [#514](https://github.com/EmergeTools/hackernews/pull/514)
12+
- Set Compile SDK to 36
13+
814
## 1.0.2 - 2024-11-20
915

1016
- Fix crash in CommentsScreen due to incorrect timestamp

android/app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ val runningEnv: String? = System.getenv("RUNNING_ENV")
1414

1515
android {
1616
namespace = "com.emergetools.hackernews"
17-
compileSdk = 35
17+
compileSdk = 36
1818

1919
defaultConfig {
2020
applicationId = "com.emergetools.hackernews"
2121
minSdk = 30
22-
targetSdk = 35
22+
targetSdk = 36
2323
versionCode = 14
2424
versionName = "1.0.3"
2525

@@ -132,7 +132,7 @@ sentry {
132132

133133
ignoredVariants.set(listOf("debug", "fast"))
134134

135-
autoInstallation.sentryVersion.set("8.17.0")
135+
autoInstallation.sentryVersion.set(libs.versions.sentry.sdk.get())
136136
}
137137

138138
dependencies {

android/gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ composeBom = "2025.06.01"
3131
uiTestJunit4Android = "1.8.3"
3232
uiautomator = "2.3.0"
3333
benchmarkMacroJunit4 = "1.3.4"
34+
sentry-sdk = "8.17.0"
3435

3536
[libraries]
3637
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }

0 commit comments

Comments
 (0)